import react from "@vitejs/plugin-react"; import path from "path"; import { defineConfig } from "vitest/config"; export default defineConfig({ plugins: [react()], test: { environment: "jsdom", globals: true, setupFiles: ["./vitest.setup.ts"], include: ["**/*.test.{ts,tsx}"], exclude: [ "node_modules", ".next", "tests/**/*", // Playwright E2E tests ], coverage: { provider: "v8", reporter: ["text", "json", "html"], exclude: [ "node_modules", ".next", "tests/**/*", "**/*.test.{ts,tsx}", "vitest.config.ts", "vitest.setup.ts", ], }, }, resolve: { alias: { "@": path.resolve(__dirname, "./"), }, }, });