Last active
April 16, 2018 04:47
-
-
Save andrerpena/1bacece30f43312176910684d03daa06 to your computer and use it in GitHub Desktop.
VS Code launch.json for debugging the current TypeScript file
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": "Current TS File", | |
"type": "node", | |
"request": "launch", | |
"program": "${workspaceRoot}/node_modules/.bin/ts-node", | |
"args": ["${relativeFile}"], | |
"protocol": "inspector" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment