Skip to content

Instantly share code, notes, and snippets.

@Om4ar
Forked from cecilemuller/launch.json
Created August 5, 2019 15:21
Show Gist options
  • Save Om4ar/be764f030af0ed34491cba11f4e70ba7 to your computer and use it in GitHub Desktop.
Save Om4ar/be764f030af0ed34491cba11f4e70ba7 to your computer and use it in GitHub Desktop.
Run ts-node in VSCode Debugger
{
"version": "0.2.0",
"configurations": [
{
"name": "Node Inspector",
"type": "node",
"request": "launch",
"args": ["${workspaceRoot}/src/service.ts"],
"runtimeArgs": ["-r", "ts-node/register"],
"cwd": "${workspaceRoot}",
"protocol": "inspector",
"internalConsoleOptions": "openOnSessionStart",
"env": {
"TS_NODE_IGNORE": "false"
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment