Typescriptify the main process code (14/N)

Summary: Converted scripts/yarn-install.js to typescript

Reviewed By: passy

Differential Revision: D20098071

fbshipit-source-id: be56a95a11089cd857efb00e62866213a88b739c
This commit is contained in:
Anton Nikolaev
2020-02-27 05:28:02 -08:00
committed by Facebook Github Bot
parent 2bd61bca87
commit ab0078a13f
3 changed files with 23 additions and 10 deletions

11
.vscode/launch.json vendored
View File

@@ -27,7 +27,16 @@
"type": "node",
"request": "launch",
"name": "Launch Current Script",
"program": "${file}",
"args": ["${file}"],
"env": {
"TS_NODE_FILES": "true",
},
"protocol": "inspector",
"internalConsoleOptions": "openOnSessionStart",
"runtimeArgs": [
"--require",
"ts-node/register"
],
"cwd": "${workspaceFolder}"
}
],