import { defineConfig } from 'vitest/config'; export default defineConfig({ test: { globals: true, environment: 'node', include: [ 'src/**/*.{test,spec}.{ts,tsx}', 'tests/**/*.{test,spec}.{ts,tsx}', ], coverage: { provider: 'v8', reporter: ['text', 'json', 'html'], exclude: [ 'node_modules/**', 'dist/**', '.steering/**', '**/*.config.{ts,js}', '**/types/**', ], thresholds: { branches: 80, functions: 80, lines: 80, statements: 80, }, }, }, });