2024-09-24 17:24:32 -04:00
|
|
|
{
|
|
|
|
|
// 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": "launch",
|
|
|
|
|
"name": "Debug backend",
|
|
|
|
|
"skipFiles": [
|
|
|
|
|
"<node_internals>/**"
|
|
|
|
|
],
|
|
|
|
|
"program": "${workspaceFolder}/server/app.js",
|
|
|
|
|
"cwd":"${workspaceFolder}/server/"
|
2024-10-22 13:04:29 -04:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"type": "msedge",
|
|
|
|
|
"request": "launch",
|
|
|
|
|
"name": "Debug frontend",
|
|
|
|
|
"url": "http://localhost:5173",
|
|
|
|
|
"webRoot": "${workspaceFolder}/client/"
|
2025-01-27 17:38:07 -05:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"name": "Docker: Attach to Node",
|
|
|
|
|
"type": "node",
|
|
|
|
|
"request": "attach",
|
|
|
|
|
"restart": true,
|
|
|
|
|
"port": 9229,
|
|
|
|
|
"address": "localhost",
|
|
|
|
|
"localRoot": "${workspaceFolder}",
|
|
|
|
|
"remoteRoot": "/app",
|
|
|
|
|
"protocol": "inspector",
|
|
|
|
|
"skipFiles": [
|
|
|
|
|
"<node_internals>/**"
|
|
|
|
|
]
|
|
|
|
|
}
|
2024-09-24 17:24:32 -04:00
|
|
|
]
|
|
|
|
|
}
|