Merge pull request #34 from ndk/master
added configuration for self debugging
This commit is contained in:
commit
9176e78016
1 changed files with 13 additions and 0 deletions
13
.vscode/launch.json
vendored
13
.vscode/launch.json
vendored
|
|
@ -13,6 +13,19 @@
|
||||||
"outDir": "${workspaceRoot}/out/src",
|
"outDir": "${workspaceRoot}/out/src",
|
||||||
"preLaunchTask": "npm"
|
"preLaunchTask": "npm"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "code-debug server",
|
||||||
|
"type": "node",
|
||||||
|
"request": "launch",
|
||||||
|
"runtimeArgs": [ "--nolazy" ],
|
||||||
|
"program": "${workspaceRoot}/src/gdb.ts",
|
||||||
|
"stopOnEntry": false,
|
||||||
|
"args": [ "--server=4711" ],
|
||||||
|
"sourceMaps": true,
|
||||||
|
"outDir": "${workspaceRoot}/out/src",
|
||||||
|
"cwd": "${workspaceRoot}",
|
||||||
|
"preLaunchTask": "npm"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Launch Tests",
|
"name": "Launch Tests",
|
||||||
"type": "extensionHost",
|
"type": "extensionHost",
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue