Update launch.json to be useful for extension debugging
This commit is contained in:
parent
96e7e42bb4
commit
ad67f3554a
1 changed files with 3 additions and 2 deletions
5
.vscode/launch.json
vendored
5
.vscode/launch.json
vendored
|
@ -8,13 +8,14 @@
|
||||||
"type": "node",
|
"type": "node",
|
||||||
"request": "launch",
|
"request": "launch",
|
||||||
"name": "Launch Program",
|
"name": "Launch Program",
|
||||||
|
// "cwd": "<absolute path to your extension>",
|
||||||
"program": "${workspaceFolder}/out/vsce",
|
"program": "${workspaceFolder}/out/vsce",
|
||||||
"args": [
|
"args": [
|
||||||
"--version"
|
"--version"
|
||||||
|
// "ls", "package", "publish"
|
||||||
],
|
],
|
||||||
"sourceMaps": true,
|
"sourceMaps": true,
|
||||||
"outputCapture": "std",
|
"outputCapture": "std"
|
||||||
"preLaunchTask": "compile"
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
Loading…
Add table
Reference in a new issue