Simply VS Code debugging

This commit is contained in:
Daniel Imms
2016-11-04 17:58:47 -07:00
parent 06753a756c
commit dbbe98487e
3 changed files with 3 additions and 11 deletions

13
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,13 @@
// A launch configuration that launches the extension inside a new window
{
"version": "0.1.0",
"configurations": [
{
"name": "Launch Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": ["--extensionDevelopmentPath=${workspaceRoot}/out" ]
}
]
}