Skip to content

Instantly share code, notes, and snippets.

@rossanthony
Created June 22, 2020 21:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rossanthony/295de7354a72e7a078535f5cdf07d406 to your computer and use it in GitHub Desktop.
Save rossanthony/295de7354a72e7a078535f5cdf07d406 to your computer and use it in GitHub Desktop.
vscode debugger setup...
{
"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