Skip to content

Instantly share code, notes, and snippets.

@nineSean
Created August 8, 2019 13:04
Show Gist options
  • Save nineSean/928f70838a1ffd62179a705ff2d5141c to your computer and use it in GitHub Desktop.
Save nineSean/928f70838a1ffd62179a705ff2d5141c to your computer and use it in GitHub Desktop.
ts-node config for vscode debug
{
"configurations": [
{
"name": "ts-node",
"type": "node",
"request": "launch",
"program": "/Users/ninesean/.nvm/versions/node/v10.15.3/bin/ts-node",
"args": ["${relativeFile}"],
"cwd": "${workspaceRoot}",
"protocol": "inspector"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment