{ "version": "0.2.0", "configurations": [ { "type": "node", "request": "launch", "name": "Run Vitest Browser", "program": "${workspaceRoot}/node_modules/vitest/vitest.mjs", "console": "integratedTerminal", "args": [ "--inspect-brk", "--browser", "--no-file-parallelism" ] }, { "type": "chrome", "request": "attach", "name": "Attach to Vitest Browser", "port": 9229 } ], "compounds": [ { "name": "Debug Vitest Browser", "configurations": [ "Attach to Vitest Browser", "Run Vitest Browser" ], "stopAll": true } ] }