Configure debugging from outside the container

This commit is contained in:
2022-08-18 19:20:22 +02:00
parent 317230c9c3
commit 29e3e6de23
4 changed files with 22 additions and 2 deletions

16
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,16 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Docker: Attach to Node",
"type": "node",
"request": "attach",
"restart": true,
"port": 9229,
"address": "localhost",
"localRoot": "${workspaceFolder}",
"remoteRoot": "/app",
"protocol": "inspector"
}
]
}