{ "version": "0.2.0", "configurations": [ { "type": "bun", "request": "launch", "name": "Debug Bun File", "program": "${cwd}/src/main.js", "cwd": "${workspaceFolder}", "env": {}, "stopOnEntry": false, "watchMode": false, "noDebug": false, "runtimeArgs": [] }, { "type": "bun", "request": "attach", "name": "Attach to Bun Process", "url": "ws://localhost:6499/", "localRoot": "${workspaceFolder}", "remoteRoot": "/app" } ] }