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

15 lines
356 B
JSON
Raw Permalink Normal View History

2016-08-29 20:10:20 +02:00
// 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",
2016-08-29 20:10:20 +02:00
"configurations": [
{
"name": "Launch Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": ["--extensionDevelopmentPath=${workspaceRoot}" ],
"stopOnEntry": false
}
]
}