{ "version": "0.2.0", "configurations": [ { "type": "node", "request": "launch", "name": "Debug Server", "program": "${workspaceFolder}/server/index.js", "skipFiles": ["/**"], "env": { "NODE_ENV": "development", "DASHBOARD_PORT": "4820" } }, { "type": "chrome", "request": "launch", "name": "Debug Client (Vite)", "url": "http://localhost:5173", "webRoot": "${workspaceFolder}/client/src" } ], "compounds": [ { "name": "Full Stack Debug", "configurations": ["Debug Server", "Debug Client (Vite)"] } ] }