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": [
|
2021-07-16 05:21:41 -04:00
|
|
|
"--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
|
|
|
},
|
2017-05-21 18:18:07 +02: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
|
|
|
}
|
|
|
|
|
]
|
2021-07-16 05:21:41 -04:00
|
|
|
}
|