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

15 lines
356 B
JSON
Raw 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
{
"version": "0.1.0",
"configurations": [
{
"name": "Launch Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": ["--extensionDevelopmentPath=${workspaceRoot}" ],
"stopOnEntry": false
}
]
}