23 lines
507 B
JSON
23 lines
507 B
JSON
|
// A launch configuration that compiles the extension and then opens it inside a new window
|
||
|
{
|
||
|
"version": "0.2.0",
|
||
|
"configurations": [
|
||
|
{
|
||
|
"type": "extensionHost",
|
||
|
"request": "launch",
|
||
|
"name": "Launch Extension",
|
||
|
"runtimeExecutable": "${execPath}",
|
||
|
"args": [
|
||
|
"--extensionDevelopmentPath=${workspaceRoot}/vscode"
|
||
|
],
|
||
|
"outFiles": [
|
||
|
"${workspaceRoot}/vscode/packages/client/out/**/*.js"
|
||
|
],
|
||
|
"preLaunchTask": {
|
||
|
"type": "npm",
|
||
|
"script": "watch:extension"
|
||
|
}
|
||
|
},
|
||
|
]
|
||
|
}
|