aboutsummaryrefslogtreecommitdiff
path: root/editors/code/.vscode/launch.json
diff options
context:
space:
mode:
Diffstat (limited to 'editors/code/.vscode/launch.json')
-rw-r--r--editors/code/.vscode/launch.json14
1 files changed, 4 insertions, 10 deletions
diff --git a/editors/code/.vscode/launch.json b/editors/code/.vscode/launch.json
index c174db304..b9d14dddd 100644
--- a/editors/code/.vscode/launch.json
+++ b/editors/code/.vscode/launch.json
@@ -3,19 +3,15 @@
3// Hover to view descriptions of existing attributes. 3// Hover to view descriptions of existing attributes.
4// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 4// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5{ 5{
6 "version": "0.2.0", 6 "version": "0.2.0",
7 "configurations": [ 7 "configurations": [
8 { 8 {
9 "name": "Extension", 9 "name": "Extension",
10 "type": "extensionHost", 10 "type": "extensionHost",
11 "request": "launch", 11 "request": "launch",
12 "runtimeExecutable": "${execPath}", 12 "runtimeExecutable": "${execPath}",
13 "args": [ 13 "args": ["--extensionDevelopmentPath=${workspaceFolder}"],
14 "--extensionDevelopmentPath=${workspaceFolder}" 14 "outFiles": ["${workspaceFolder}/out/**/*.js"],
15 ],
16 "outFiles": [
17 "${workspaceFolder}/out/**/*.js"
18 ],
19 "preLaunchTask": "npm: watch" 15 "preLaunchTask": "npm: watch"
20 }, 16 },
21 { 17 {
@@ -27,9 +23,7 @@
27 "--extensionDevelopmentPath=${workspaceFolder}", 23 "--extensionDevelopmentPath=${workspaceFolder}",
28 "--extensionTestsPath=${workspaceFolder}/out/test" 24 "--extensionTestsPath=${workspaceFolder}/out/test"
29 ], 25 ],
30 "outFiles": [ 26 "outFiles": ["${workspaceFolder}/out/test/**/*.js"],
31 "${workspaceFolder}/out/test/**/*.js"
32 ],
33 "preLaunchTask": "npm: watch" 27 "preLaunchTask": "npm: watch"
34 } 28 }
35 ] 29 ]