/** * Agentic QE v3 - Vitest Configuration */ import { defineConfig } from 'vitest/config'; import path from 'path'; export default defineConfig({ test: { globals: true, environment: 'node', include: ['tests/**/*.test.ts'], exclude: ['node_modules', 'dist'], coverage: { provider: 'v8', reporter: ['text', 'json', 'html'], include: ['src/**/*.ts'], exclude: ['src/**/*.d.ts', 'src/**/index.ts'], }, testTimeout: 10000, }, resolve: { alias: { '@': path.resolve(__dirname, './src'), }, }, });