summaryrefslogtreecommitdiffstats
path: root/.vscode/launch.json
diff options
context:
space:
mode:
Diffstat (limited to '.vscode/launch.json')
-rw-r--r--.vscode/launch.json6
1 files changed, 3 insertions, 3 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
index 3333439..054ed81 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -11,18 +11,18 @@
"stopOnEntry": false,
"sourceMaps": true,
"outFiles": [ "${workspaceRoot}/out/**/*.js" ],
- "preLaunchTask": "npm: watch"
+ "preLaunchTask": "npm: compile"
},
{
"name": "Launch Tests",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
- "args": ["--extensionDevelopmentPath=${workspaceRoot}", "--extensionTestsPath=${workspaceRoot}/out/test" ],
+ "args": ["--extensionDevelopmentPath=${workspaceRoot}", "--extensionTestsPath=${workspaceRoot}/out/test", "--disable-extensions" ],
"stopOnEntry": false,
"sourceMaps": true,
"outFiles": [ "${workspaceRoot}/out/test/**/*.js" ],
- "preLaunchTask": "npm: watch"
+ "preLaunchTask": "npm: compile"
}
]
}