Files
flipper/.vscode/launch.json
Anton Nikolaev ab0078a13f 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
2020-02-27 05:45:24 -08:00

53 lines
1.1 KiB
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Attach to Running Renderer",
"type": "chrome",
"request": "attach",
"port": 9222,
"webRoot": "/",
"url": "http://localhost:3000/index.dev.html"
},
{
"name": "Attach to Running Main",
"type": "node",
"request": "attach",
"port": 9229,
"sourceMaps": true
},
{
"type": "node",
"request": "launch",
"name": "Launch Current Jest Suite",
"program": "${workspaceFolder}/node_modules/.bin/jest",
"args": ["--runInBand", "${relativeFile}"]
},
{
"type": "node",
"request": "launch",
"name": "Launch Current Script",
"args": ["${file}"],
"env": {
"TS_NODE_FILES": "true",
},
"protocol": "inspector",
"internalConsoleOptions": "openOnSessionStart",
"runtimeArgs": [
"--require",
"ts-node/register"
],
"cwd": "${workspaceFolder}"
}
],
"compounds": [
{
"name": "Attach to All",
"configurations": [
"Attach to Running Main",
"Attach to Running Renderer"
]
}
]
}