mirror of
https://github.com/stackblitz/bolt.new
synced 2024-11-27 14:32:46 +00:00
17 lines
433 B
JSON
17 lines
433 B
JSON
|
{
|
||
|
"version": "0.2.0",
|
||
|
"configurations": [
|
||
|
{
|
||
|
"type": "node",
|
||
|
"request": "launch",
|
||
|
"name": "Debug Current Test File",
|
||
|
"autoAttachChildProcesses": true,
|
||
|
"skipFiles": ["<node_internals>/**", "**/node_modules/**"],
|
||
|
"program": "${workspaceRoot}/node_modules/vitest/vitest.mjs",
|
||
|
"args": ["run", "${relativeFile}"],
|
||
|
"smartStep": true,
|
||
|
"console": "integratedTerminal"
|
||
|
}
|
||
|
]
|
||
|
}
|