import { defineConfig } from "vitest/config"; export const baseVitestConfig = defineConfig({ test: { globals: true, environment: "node", include: ["src/**/*.test.ts", "src/**/*.test.tsx", "tests/**/*.test.ts"], coverage: { provider: "v8", reporter: ["text", "html"], include: ["src/**"], exclude: ["src/**/*.test.{ts,tsx}", "src/**/index.ts"], }, }, });