mirror of
https://github.com/microsoft/vscode-extension-samples.git
synced 2026-04-27 16:55:44 +08:00
This is a new (with js-debug) option that makes debugging child processes much easier. Use it for the LSP subprocesses. Supplants https://github.com/microsoft/vscode-extension-samples/pull/704
18 lines
477 B
JSON
18 lines
477 B
JSON
{
|
|
"version": "0.2.0",
|
|
// List of configurations. Add new configurations or edit existing ones.
|
|
"configurations": [
|
|
{
|
|
"type": "extensionHost",
|
|
"request": "launch",
|
|
"name": "Launch Client",
|
|
"runtimeExecutable": "${execPath}",
|
|
"args": ["--extensionDevelopmentPath=${workspaceRoot}" ],
|
|
"autoAttachChildProcesses": true,
|
|
"sourceMaps": true,
|
|
"outFiles": ["${workspaceRoot}/client/out/**/*.js"],
|
|
"preLaunchTask": "npm: watch"
|
|
}
|
|
]
|
|
}
|