import { defineConfig } from "vitest/config" export default defineConfig({ test: { typecheck: { tsconfig: "./tsconfig.json" }, coverage: { reporter: ["text", "json", "html"], enabled: true, cleanOnRerun: true, thresholds: { statements: 97, branches: 93, functions: 97, lines: 97 }, }, globals: true, include: ["**/*.spec.[tj]s"], testTimeout: 20000, isolate: false, exclude: ["node_modules", "dist"], server: { deps: { inline: ["isly"] } }, }, })