From a8f058e6573291186f9796064bc53d494cd060f9 Mon Sep 17 00:00:00 2001 From: Ian Philips Date: Thu, 19 Sep 2024 18:44:56 -0700 Subject: [PATCH] Add node debug to launch --- .vscode/launch.json | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.vscode/launch.json b/.vscode/launch.json index a67e03f833..c059dbcc75 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -4,6 +4,13 @@ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ + { + "name": "Attach to node", + "port": 9229, + "request": "attach", + "skipFiles": ["/**"], + "type": "node" + }, { "name": "Attach to Chrome", "type": "chrome",