From f6f9931377b864e5f1a6ca8081921f726508ca75 Mon Sep 17 00:00:00 2001 From: Connor Peet Date: Fri, 10 Jan 2020 14:34:38 -0800 Subject: [PATCH] add launch.json settings to make js-debug faster --- .vscode/launch.json | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 6fa93e1c9c5..15dcd01344e 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -162,9 +162,12 @@ "urlFilter": "*workbench.html*", "runtimeArgs": [ "--inspect=5875", - "--no-cached-data" + "--no-cached-data", ], - "webRoot": "${workspaceFolder}" + "webRoot": "${workspaceFolder}", + // Settings for js-debug: + "pauseForSourceMap": false, + "outFiles": ["${workspaceFolder}/out/**/*.js"], }, { "type": "node", -- GitLab