.vitest-mcp.dev.jsonโข848 B
{
"testDefaults": {
"format": "summary",
"timeout": 30000,
"watchMode": false
},
"coverageDefaults": {
"threshold": 80,
"format": "summary",
"includeDetails": false,
"thresholds": {
"lines": 80,
"functions": 80,
"branches": 80,
"statements": 80
}
},
"discovery": {
"testPatterns": [
"**/*.{test,spec}.{js,ts,jsx,tsx}",
"**/__tests__/**/*.{js,ts,jsx,tsx}"
],
"excludePatterns": [
"node_modules",
"dist",
"coverage",
".git",
"build",
".next",
".nuxt"
],
"maxDepth": 10
},
"server": {
"verbose": false,
"validatePaths": true,
"allowRootExecution": false,
"workingDirectory": null
},
"safety": {
"maxFiles": 100,
"requireConfirmation": true,
"allowedRunners": ["vitest"]
}
}