import { defineConfig } from 'vitest/config' import path from 'path' export default defineConfig({ test: { globals: true, environment: 'node', setupFiles: ['./tests/setup.ts'], include: ['tests/unit/**/*.test.ts', 'tests/migration/**/*.test.ts'], exclude: ['node_modules', 'tests/e2e'], coverage: { provider: 'v8', reporter: ['text', 'json', 'html'], exclude: [ 'node_modules/', 'tests/', '**/*.test.ts', '**/*.spec.ts', 'prisma/', 'next-env.d.ts' ], thresholds: { lines: 80, functions: 80, branches: 80, statements: 80 } }, testTimeout: 30000, hookTimeout: 30000 }, resolve: { alias: { '@': path.resolve(__dirname, '.'), }, }, })