import { defineConfig } from 'vitest/config' import vue from '@vitejs/plugin-vue' import { fileURLToPath, URL } from 'node:url' export default defineConfig({ plugins: [vue()], test: { globals: true, environment: 'happy-dom', include: ['src/**/*.{test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}'], coverage: { provider: 'v8', reporter: ['text', 'json', 'html'], include: ['src/**/*.ts'], exclude: ['src/**/*.d.ts', 'src/**/*.test.ts', 'src/mocks/**'], }, }, resolve: { alias: { '@': fileURLToPath(new URL('./src', import.meta.url)) } } })