-
-
Save Alexzanderk/1bf08563ba113a5bdb7645965bf346f6 to your computer and use it in GitHub Desktop.
Debug ts-mocha in vs code (visual studio code)
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
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "Run ts-mocha File", | |
"type": "node", | |
"request": "launch", | |
"runtimeExecutable": "${workspaceRoot}/node_modules/.bin/ts-mocha", | |
"runtimeArgs": [ | |
"${file}" | |
], | |
"protocol": "inspector" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment