{ "version": "0.2.0", "configurations": [ { "name": "React: James Billings dev", "type": "node", "request": "launch", "runtimeExecutable": "/root/.local/share/pnpm/pnpm", "runtimeArgs": [ "run", "dev" ], "autoAttachChildProcesses": true }, { "name": "React: Launch Chrome", "type": "chrome", "request": "launch", "url": "http://localhost:5173", "webRoot": "${workspaceFolder}/src", "sourceMaps": true, "preLaunchTask": "npm: dev" }, { "name": "React: Attach to Chrome", "type": "chrome", "request": "attach", "port": 9222, "url": "http://localhost:5173", "webRoot": "${workspaceFolder}/src" }, { "name": "Jest: Run Tests", "type": "node", "request": "launch", "runtimeExecutable": "/root/.local/share/pnpm/pnpm", "runtimeArgs": [ "test", "--runInBand" ], "console": "integratedTerminal", "internalConsoleOptions": "neverOpen" } ] }