Created
August 3, 2020 18:45
-
-
Save lholmquist/cda4412fb82b5145192db34334f2ca63 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// 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": "Mocha Tests", | |
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha", | |
"args": [ | |
"-r", | |
"ts-node/register", | |
"--timeout", | |
"999999", | |
"--colors", | |
"${workspaceFolder}/test/integration/http_emitter_test.ts" // change this to the file you want to debug | |
], | |
"internalConsoleOptions": "openOnSessionStart", | |
"skipFiles": [ | |
"<node_internals>/**" | |
] | |
}, | |
{ | |
"type": "node", | |
"request": "launch", | |
"name": "Launch Program", | |
"skipFiles": [ | |
"<node_internals>/**" | |
], | |
"program": "${workspaceFolder}/dist/index.js", | |
"outFiles": [ | |
"${workspaceFolder}/**/*.js" | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment