Files
vscode-extension-samples/tree-view-sample/.vscode/launch.json

33 lines
948 B
JSON
Raw Normal View History

2016-11-16 09:33:20 -08:00
// A launch configuration that compiles the extension and then opens it inside a new window
{
2018-10-25 18:28:48 +02:00
"version": "0.2.0",
2016-11-16 09:33:20 -08:00
"configurations": [
{
"name": "Launch Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
2017-12-03 19:10:18 +01:00
"args": [
"--extensionDevelopmentPath=${workspaceRoot}",
"--enable-proposed-api",
"vscode-samples.custom-view-samples"
2017-12-03 19:10:18 +01:00
],
2016-11-16 09:33:20 -08:00
"sourceMaps": true,
2017-12-03 19:10:18 +01:00
"outFiles": [
2023-02-27 11:46:14 -08:00
"${workspaceRoot}/out/**/*.js"
2017-12-03 19:10:18 +01:00
],
2018-05-31 16:19:18 +02:00
"preLaunchTask": "npm: watch"
2016-11-16 09:33:20 -08:00
},
{
"type": "node",
"request": "attach",
"name": "Attach to Extension Host",
"port": 5870,
"restart": true,
2017-12-03 19:10:18 +01:00
"outFiles": [
2023-02-27 11:46:14 -08:00
"${workspaceRoot}/out"
2017-12-03 19:10:18 +01:00
]
2016-11-16 09:33:20 -08:00
}
]
}