Skip to content

Instantly share code, notes, and snippets.

@maapteh
Last active November 16, 2019 20:15
Show Gist options
  • Save maapteh/a67c264343953a7c8d7b42ac7c3aea0a to your computer and use it in GitHub Desktop.
Save maapteh/a67c264343953a7c8d7b42ac7c3aea0a to your computer and use it in GitHub Desktop.
vscode bind on ws inspect
{
// 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