import { defineConfig } from 'vitest/config' import vue from '@vitejs/plugin-vue' import { resolve } from 'path' export default defineConfig({ plugins: [vue()], test: { globals: true, environment: 'happy-dom', env: { NODE_ENV: 'test', }, coverage: { provider: 'v8', reporter: ['text', 'json', 'html', 'lcov'], exclude: [ 'node_modules/', '.nuxt/', 'dist/', '*.config.{js,ts}', 'tests/**', '**/*.spec.ts', '**/*.test.ts', 'types/**', ], all: true, thresholds: { lines: 80, functions: 80, branches: 80, statements: 80, }, }, include: ['tests/**/*.spec.ts'], setupFiles: ['./tests/setup.ts'], }, resolve: { alias: { '~': resolve(__dirname, './'), '@': resolve(__dirname, './'), '#app': resolve(__dirname, './.nuxt/imports.d.ts'), }, }, })