Add debug launch file

This commit is contained in:
D. Scott Boggs 2023-10-11 06:39:34 -04:00
parent 1432f43035
commit e511bd485a

26
.vscode/launch.json vendored Normal file
View file

@ -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": [
"<node_internals>/**"
],
"program": "${workspaceFolder}/index.js"
},
{
"type": "node",
"request": "launch",
"skipFiles": [
"<node_internals>/**"
],
"name": "Run tests",
"program": "${workspaceFolder}/node_modules/mocha/bin/mocha.js"
}
]
}