import { defineConfig } from 'vitest/config'; export default defineConfig({ test: { globals: true, environment: 'node', coverage: { provider: 'v8', reporter: ['text', 'lcov', 'json-summary'], exclude: [ '**/node_modules/**', '**/dist/**', '**/*.config.*', '**/coverage/**', '_bmad/**', '_bmad-output/**', ], thresholds: { lines: 60, branches: 50, functions: 55, statements: 60, }, }, }, });