Files
vscode-extension-samples/theme-sample/.vscode/launch.json
Sandeep Somavarapu a409ac8111 Sample theme extension
2016-08-29 20:10:20 +02:00

15 lines
356 B
JSON

// 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
}
]
}