Created
August 8, 2019 13:04
-
-
Save nineSean/928f70838a1ffd62179a705ff2d5141c to your computer and use it in GitHub Desktop.
ts-node config for vscode debug
This file contains 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
{ | |
"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