Files
vscode-extension-samples/.vscode/launch.json
Martin Aeschlimann c63fce0348 Decorator sample
2015-11-05 17:33:07 +01:00

17 lines
449 B
JSON

// A launch configuration that compiles the extension and then opens it inside a new window
{
"version": "0.1.0",
"configurations": [
{
"name": "Launch Decorator Sample",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": ["--extensionDevelopmentPath=${workspaceRoot}/decorator-sample" ],
"stopOnEntry": false,
"sourceMaps": true,
"outDir": "out",
"preLaunchTask": "npm"
}
]
}