From c828562eb4ec6347446911fabd0242d2b893d2b4 Mon Sep 17 00:00:00 2001 From: Jake Bailey <5341706+jakebailey@users.noreply.github.com> Date: Fri, 3 Feb 2023 10:01:41 -0800 Subject: [PATCH] Speed up debug attach by setting outFiles (#52584) Co-authored-by: Daniel Rosenwasser --- .vscode/launch.template.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.vscode/launch.template.json b/.vscode/launch.template.json index 134216381d7..6d6086ecc73 100644 --- a/.vscode/launch.template.json +++ b/.vscode/launch.template.json @@ -40,6 +40,12 @@ "env": { "NODE_ENV": "testing" }, + "outFiles": [ + "${workspaceFolder}/built/**/*.js", + "${workspaceFolder}/built/**/*.mjs", + "${workspaceFolder}/built/**/*.cjs", + "!**/node_modules/**" + ], "sourceMaps": true, "smartStep": true, "preLaunchTask": "npm: build:tests",