Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorConnor Peet <connor@peet.io>2020-07-31 20:38:31 +0300
committerConnor Peet <connor@peet.io>2020-07-31 20:55:07 +0300
commit262ab802d3e554b51d00d2d91ac9c4e0cff576a8 (patch)
treebe7d5de44fcd183f70aa96d2051b6c5f78424110 /.vscode/launch.json
parent98dd195b918add82f501b882a14e3e6121bbf92c (diff)
launch: check prerequisites in a pre-launch task
Fixes https://github.com/microsoft/vscode/issues/103708
Diffstat (limited to '.vscode/launch.json')
-rw-r--r--.vscode/launch.json7
1 files changed, 4 insertions, 3 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
index 9051afc7e8c..577b733df80 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -216,10 +216,10 @@
"port": 9222,
"timeout": 20000,
"env": {
- "VSCODE_EXTHOST_WILL_SEND_SOCKET": null
+ "VSCODE_EXTHOST_WILL_SEND_SOCKET": null,
+ "VSCODE_SKIP_PRELAUNCH": "1"
},
"cleanUp": "wholeBrowser",
- "breakOnLoad": false,
"urlFilter": "*workbench.html*",
"runtimeArgs": [
"--inspect=5875",
@@ -232,7 +232,8 @@
"outFiles": [
"${workspaceFolder}/out/**/*.js"
],
- "browserLaunchLocation": "workspace"
+ "browserLaunchLocation": "workspace",
+ "preLaunchTask": "Ensure Prelaunch Dependencies",
},
{
"type": "node",