Created
September 13, 2018 06:01
-
-
Save tkssharma/0b736b3e8f553c8758d9ff877cf0375f to your computer and use it in GitHub Desktop.
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
{ | |
// Use IntelliSense to learn about possible Node.js debug attributes. | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"type": "node", | |
"request": "launch", | |
"name": "Launch Program", | |
"runtimeExecutable":"node --inspect", | |
"cwd": "${workspaceRoot}", | |
"protocol": "auto", | |
"program": "${workspaceRoot}/app/server.js" | |
}, | |
{ | |
"type": "node", | |
"request": "attach", | |
"name": "Node: Nodemon", | |
"restart": true, | |
"protocol": "inspector", | |
"address": "127.0.0.1", | |
"port": 9229, | |
"localRoot": "${workspaceRoot}/", | |
"remoteRoot": "/usr/src/app/" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment