-
-
Save jamesmcallister/e028297b6dbeb79a1e7719af82dd9f35 to your computer and use it in GitHub Desktop.
Debug vscode docker es6
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
# docker-compose.yml | |
... | |
command: npm run debug | |
ports: | |
- "3000:3000" | |
- "9229:9229" | |
... | |
-------------------------------------------------------- | |
# package.json | |
... | |
"debug": "node_modules/.bin/nodemon --inspect=0.0.0.0:9229 bin/dev" | |
... | |
-------------------------------------------------------- | |
# launch.json | |
{ | |
// Use IntelliSense to learn about possible attributes. | |
// Hover to view descriptions of existing attributes. | |
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "Attach", | |
"type": "node", | |
"request": "attach", | |
"port": 9229, | |
"protocol": "inspector", | |
"restart": true, | |
"address": "localhost", | |
"localRoot": "${workspaceFolder}", | |
"remoteRoot": "/usr/src/app", | |
"sourceMaps": false | |
} | |
] | |
} | |
-------------------------------------------------------- | |
# .babelrc | |
{ | |
"presets": [ "es2015" ], | |
"retainLines": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment