Files
vscode-extension-samples/statusbar-sample/.vscode/launch.json

22 lines
479 B
JSON
Raw Permalink Normal View History

// A launch configuration that compiles the extension and then opens it inside a new window
{
2019-04-16 09:59:21 -07:00
"version": "0.2.0",
"configurations": [
{
"name": "Launch Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
2018-11-15 10:32:22 +01:00
"args": [
"--extensionDevelopmentPath=${workspaceRoot}"
],
"stopOnEntry": false,
"sourceMaps": true,
2018-11-15 10:32:22 +01:00
"outFiles": [
"${workspaceRoot}/out/**/*.js"
2018-11-15 10:32:22 +01:00
],
"preLaunchTask": "npm: watch"
}
]
}