From e511bd485a6f4b2d283eea02addb5cabeb33fe69 Mon Sep 17 00:00:00 2001 From: "D. Scott Boggs" Date: Wed, 11 Oct 2023 06:39:34 -0400 Subject: [PATCH] Add debug launch file --- .vscode/launch.json | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..660f37b --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,26 @@ +{ + // 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}/index.js" + }, + { + "type": "node", + "request": "launch", + "skipFiles": [ + "/**" + ], + "name": "Run tests", + "program": "${workspaceFolder}/node_modules/mocha/bin/mocha.js" + } + ] +} \ No newline at end of file