Created
April 16, 2018 04:48
-
-
Save andrerpena/fd6b1775c7a257218eb70bad01ff7066 to your computer and use it in GitHub Desktop.
VS Code launch.json for debugging the start:debug:ts NPM script
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": [ | |
{ | |
"type": "node", | |
"request": "launch", | |
"name": "Launch via NPM", | |
"runtimeExecutable": "npm", | |
"runtimeArgs": [ | |
"run-script", | |
"start:debug:ts" | |
], | |
"port": 9229 | |
}, | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment