Files
vscode-extension-samples/lsp-user-input-sample/.vscode/launch.json

21 lines
532 B
JSON
Raw Permalink Normal View History

2019-11-15 19:19:44 +01:00
// A launch configuration that compiles the extension and then opens it inside a new window
{
"version": "0.2.0",
"configurations": [
{
"type": "extensionHost",
"request": "launch",
"name": "Launch Client",
"runtimeExecutable": "${execPath}",
"args": ["--extensionDevelopmentPath=${workspaceFolder}" ],
"autoAttachChildProcesses": true,
2019-11-15 19:19:44 +01:00
"sourceMaps": true,
"outFiles": [
"${workspaceRoot}/client/out/**/*.js",
"${workspaceRoot}/server/out/**/*.js"
],
2019-11-15 19:19:44 +01:00
"preLaunchTask": "npm: watch"
}
]
}