Last active
November 16, 2019 20:15
-
-
Save maapteh/a67c264343953a7c8d7b42ac7c3aea0a to your computer and use it in GitHub Desktop.
vscode bind on ws inspect
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 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": [ | |
{ | |
"type": "node", | |
"request": "attach", | |
"name": "ah: API", | |
"protocol": "inspector", | |
"port": 7001, | |
"restart": true, | |
"localRoot": "${workspaceRoot}", | |
"remoteRoot": "." | |
}, | |
{ | |
"type": "node", | |
"request": "attach", | |
"name": "ah: WEB", | |
"protocol": "inspector", | |
"port": 7000, | |
"restart": true, | |
"localRoot": "${workspaceRoot}", | |
"remoteRoot": "." | |
} | |
], | |
"compounds": [ | |
{ | |
"name": "ah: full application", | |
"configurations": [ | |
"ah: WEB", | |
"ah: API" | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment