VSCode settings

Summary:
1) Add VSCode settings to the source control, so users won't need to configure them
2) Copy VSCode settings to both "sonar" and "sonar/desktop" folders so both folders can be opened for development

Reviewed By: passy

Differential Revision: D20594643

fbshipit-source-id: 4331659008e4dbf9dfcc44a3723ab0612a3bd333
This commit is contained in:
Anton Nikolaev
2020-03-23 04:23:37 -07:00
committed by Facebook GitHub Bot
parent 3cbeaf2642
commit 74d8da7c4b
3 changed files with 90 additions and 21 deletions

View File

@@ -22,30 +22,25 @@
"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"
]
}
{
"type": "node",
"cwd": "${fileDirname}",
"request": "launch",
"name": "Launch Current Script",
"args": ["${file}"],
"env": {
"TS_NODE_FILES": "true"
},
"protocol": "inspector",
"internalConsoleOptions": "openOnSessionStart",
"runtimeArgs": ["--require", "ts-node/register"]
}
],
"compounds": [
{
"name": "Attach to All",
"configurations": [
"Attach to Running Main",
"Attach to Running Renderer"
]
"name": "Attach to All",
"configurations": ["Attach to Running Main", "Attach to Running Renderer"]
}
]
]
}