|
@@ -4,7 +4,8 @@
|
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
{
|
|
{
|
|
"version": "0.2.0",
|
|
"version": "0.2.0",
|
|
- "configurations": [{
|
|
|
|
|
|
+ "configurations": [
|
|
|
|
+ {
|
|
"name": "Run Extension",
|
|
"name": "Run Extension",
|
|
"type": "extensionHost",
|
|
"type": "extensionHost",
|
|
"request": "launch",
|
|
"request": "launch",
|
|
@@ -20,5 +21,22 @@
|
|
"VSCODE_DEBUG_MODE": true
|
|
"VSCODE_DEBUG_MODE": true
|
|
}
|
|
}
|
|
},
|
|
},
|
|
|
|
+ {
|
|
|
|
+ "name": "Run Extension with workspace file",
|
|
|
|
+ "type": "extensionHost",
|
|
|
|
+ "request": "launch",
|
|
|
|
+ "runtimeExecutable": "${execPath}",
|
|
|
|
+ "args": [
|
|
|
|
+ "${workspaceFolder}/workspace.code-workspace",
|
|
|
|
+ "--extensionDevelopmentPath=${workspaceFolder}"
|
|
|
|
+ ],
|
|
|
|
+ "outFiles": [
|
|
|
|
+ "${workspaceFolder}/out/**/*.js"
|
|
|
|
+ ],
|
|
|
|
+ "preLaunchTask": "npm: watch",
|
|
|
|
+ "env": {
|
|
|
|
+ "VSCODE_DEBUG_MODE": true
|
|
|
|
+ }
|
|
|
|
+ },
|
|
]
|
|
]
|
|
}
|
|
}
|