From 106a1c780941c827b0564b21647408699357d52c Mon Sep 17 00:00:00 2001 From: Damien Butt <22627489+damienbutt@users.noreply.github.com> Date: Wed, 21 Feb 2024 13:57:47 +0000 Subject: [PATCH] feat(javascript): add debug launch config --- templates/javascript/vscode/launch.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 templates/javascript/vscode/launch.json diff --git a/templates/javascript/vscode/launch.json b/templates/javascript/vscode/launch.json new file mode 100644 index 0000000..5aa959f --- /dev/null +++ b/templates/javascript/vscode/launch.json @@ -0,0 +1,15 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "type": "node", + "request": "launch", + "name": "Launch Program", + "skipFiles": ["/**"], + "program": "${workspaceFolder}/src/app.js" + } + ] +}