Created
December 27, 2016 08:30
-
-
Save koistya/421ea3e0139225b27f909e98202a34de to your computer and use it in GitHub Desktop.
Settings for Node.js application debugging with VS Code. See https://github.com/kriasoft/nodejs-api-starter
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
{ | |
// Use IntelliSense to find out which attributes exist for node debugging | |
// Use hover for the description of the existing attributes | |
// For further information visit https://go.microsoft.com/fwlink/?linkid=830387 | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"type": "node2", | |
"request": "attach", | |
"name": "Attach to Node.js", | |
"port": 9229, | |
"sourceMaps": true, | |
"localRoot": "${workspaceRoot}", | |
"remoteRoot": "/usr/src/app", | |
"outFiles": [ | |
"${workspaceRoot}/build/**/*.js" | |
], | |
"restart": false | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment