Created
July 28, 2017 16:50
-
-
Save rharriso/14c70303217b01743e919dfe69df6c71 to your computer and use it in GitHub Desktop.
VSCode Node debug config
This file contains hidden or 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": [ | |
{ | |
"name": "Attach", | |
"type": "node", | |
"request": "attach", | |
"port": 5858, | |
"address": "localhost", | |
"restart": false, | |
"sourceMaps": true, | |
"localRoot": "${workspaceRoot}", | |
"remoteRoot": null | |
}, | |
{ | |
"type": "node", | |
"protocol": "inspector", | |
"request": "attach", | |
"name": "Attach to Inspector", | |
"address": "localhost", | |
"port": 9229 | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment