import { defineConfig } from 'vitest/config'; export default defineConfig({ test: { include: ['src/**/*.test.ts', 'test/**/*.test.ts'], environment: 'node', coverage: { provider: 'v8', reporter: ['text', 'html', 'lcov'], include: ['src/services/**', 'src/lib/**'], exclude: ['**/*.test.ts', '**/types.ts'], thresholds: { lines: 60, functions: 60, branches: 60, statements: 60, }, }, }, });