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-10-22 02:34:59 +0300
committerConnor Peet <connor@peet.io>2020-10-22 02:34:59 +0300
commit9b646fda6c1b8f73ed7b4e4d4713da8ffd015327 (patch)
treef29952340d96cb00e74d95a65adc313744005c31 /.vscode/launch.json
parentd7019f3d216bfc28cd09c2151b2aaf0a45e4e401 (diff)
debug: adopt perScriptSourcemaps options for faster browser debugging
Diffstat (limited to '.vscode/launch.json')
-rw-r--r--.vscode/launch.json6
1 files changed, 5 insertions, 1 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
index 9a5c41b3d8f..6153d7a995c 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -269,8 +269,10 @@
}
},
{
- "type": "chrome",
+ "type": "pwa-chrome",
"request": "launch",
+ "outFiles": [],
+ "perScriptSourcemaps": "yes",
"name": "VS Code (Web, Chrome)",
"url": "http://localhost:8080",
"preLaunchTask": "Run web",
@@ -282,6 +284,8 @@
{
"type": "pwa-msedge",
"request": "launch",
+ "outFiles": [],
+ "perScriptSourcemaps": "yes",
"name": "VS Code (Web, Edge)",
"url": "http://localhost:8080",
"pauseForSourceMap": false,