Created
March 19, 2020 20:26
-
-
Save danileao/512e16e40fb814723171264725d34312 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
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"type": "node", | |
"request": "attach", | |
"name": "Launch", | |
"protocol": "inspector", | |
"port": 8756 | |
}, | |
{ | |
"type": "node", | |
"request": "attach", | |
"name": "Launch2", | |
"protocol": "inspector", | |
"port": 8755 | |
} | |
] | |
} |
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
{ | |
"execMap": { | |
"js": "node --inspect -r sucrase/register" | |
} | |
} |
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
"dev:worker": "nodemon --inspect=127.0.0.1:8755 -r sucrase/register src/worker.js", | |
"dev:server": "nodemon --inspect=127.0.0.1:8756 -r sucrase/register src/server.js ", |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment