2019-10-23 23:20:06 +08:00
|
|
|
{
|
|
|
|
// Use IntelliSense to learn about possible attributes.
|
|
|
|
// Hover to view descriptions of existing attributes.
|
|
|
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
|
|
"version": "0.2.0",
|
|
|
|
"configurations": [
|
|
|
|
{
|
|
|
|
"type": "node",
|
|
|
|
"request": "launch",
|
2024-04-01 21:23:09 +08:00
|
|
|
"name": "Vitest - 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"
|
2019-10-23 23:20:06 +08:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|