Created
June 22, 2020 21:45
-
-
Save rossanthony/295de7354a72e7a078535f5cdf07d406 to your computer and use it in GitHub Desktop.
vscode debugger setup...
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": [ | |
{ | |
"type": "node", | |
"request": "attach", | |
"protocol": "inspector", | |
"name": "Attach debug inspector to Docker", | |
"trace": "verbose", | |
"port": 9229, | |
"restart": true, | |
"address": "0.0.0.0", | |
"cwd": "${workspaceFolder}/rocket-api", | |
"localRoot": "${workspaceFolder}/rocket-api", | |
"remoteRoot": "/app/rocket-api", | |
"outFiles": [ | |
"${workspaceFolder}/rocket-api/build/**/*.js" | |
], | |
"sourceMaps": true, | |
"internalConsoleOptions": "neverOpen", | |
"sourceMapPathOverrides": { | |
"/app/rocket-api/*": "${workspaceRoot}/rocket-api/*" | |
} | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment