import path from "node:path" import { defineConfig } from "vitest/config" import react from "@vitejs/plugin-react" export default defineConfig({ plugins: [react()], test: { environment: "jsdom", setupFiles: ["./tests/setup.ts"], include: ["**/*.{test,spec}.{ts,tsx}"], exclude: ["node_modules", ".next", "out", "build"], }, resolve: { alias: { "@": path.resolve(__dirname, "./"), }, }, })