import { defineConfig } from 'vitest/config'; import react from '@vitejs/plugin-react'; export default defineConfig({ plugins: [react()], test: { environment: 'jsdom', globals: true, setupFiles: ['./tests/setup.ts'], include: ['tests/**/*.test.{ts,tsx}'], coverage: { provider: 'v8', reporter: ['text', 'json', 'html'], include: ['services/**/*.ts', 'components/**/*.tsx'], exclude: ['**/node_modules/**', '**/tests/**'] } }, resolve: { alias: { '@': '/home/user/Rentenversicherer' } } });