Files
cut-abstractions/.vscode/launch.json
2025-07-15 10:56:24 +08:00

33 lines
676 B
JSON

{
"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
}
]
}