Files
vscode-extension-samples/task-provider-sample/.vscode/launch.json

18 lines
482 B
JSON
Raw Permalink Normal View History

2017-07-05 17:21:28 +02:00
// A launch configuration that compiles the extension and then opens it inside a new window
{
2018-10-26 12:25:34 +02:00
"version": "0.2.0",
"configurations": [
{
"name": "Launch Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": ["--extensionDevelopmentPath=${workspaceRoot}"],
"stopOnEntry": false,
"sourceMaps": true,
"outFiles": ["${workspaceRoot}/out/src/**/*.js"],
"preLaunchTask": "npm: watch"
}
]
2017-07-05 17:21:28 +02:00
}