import { sveltekit } from '@sveltejs/kit/vite'; import { defineConfig } from 'vitest/config'; export default defineConfig({ plugins: [sveltekit()], test: { environment: 'happy-dom', globals: true, include: ['src/**/*.{test,spec}.{js,ts}'], css: true, coverage: { reporter: ['text', 'json', 'html'], exclude: ['node_modules/', 'src/test/', '**/*.d.ts', '**/*.config.*'], }, }, });