From 9b646fda6c1b8f73ed7b4e4d4713da8ffd015327 Mon Sep 17 00:00:00 2001 From: Connor Peet Date: Wed, 21 Oct 2020 16:34:59 -0700 Subject: [PATCH] debug: adopt perScriptSourcemaps options for faster browser debugging --- .vscode/launch.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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,