Created
April 17, 2018 01:55
-
-
Save gustavo-rodrigues-dev/c608dd0373776d4e4f25bbcb1f2a22de to your computer and use it in GitHub Desktop.
VSCode Debug with npm
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
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"type": "node", | |
"request": "launch", | |
"name": "Launch via NPM", | |
"runtimeExecutable": "npm", | |
"runtimeArgs": [ | |
"run", | |
"debug" | |
], | |
"port": 9229 | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment