Skip to content

Instantly share code, notes, and snippets.

@Alexzanderk
Forked from joelharkes/launch.json
Created July 28, 2020 20:26
Show Gist options
  • Save Alexzanderk/1bf08563ba113a5bdb7645965bf346f6 to your computer and use it in GitHub Desktop.
Save Alexzanderk/1bf08563ba113a5bdb7645965bf346f6 to your computer and use it in GitHub Desktop.
Debug ts-mocha in vs code (visual studio code)
{
"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