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

21 lines
387 B
JSON
Raw Permalink Normal View History

2016-05-25 11:16:48 +02:00
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceRoot}"
],
"stopOnEntry": false,
"sourceMaps": true,
2018-05-31 16:14:33 +02:00
"outFiles": [
"${workspaceRoot}/out/**/*.js"
],
"preLaunchTask": "npm: watch"
2016-05-25 11:16:48 +02:00
}
]
2018-05-31 16:14:33 +02:00
}