import { defineConfig } from "vitest/config"; export default defineConfig({ test: { coverage: { provider: "v8", include: ["src/**/*.ts"], exclude: ["src/types/**/*.ts"], thresholds: { statements: 100, branches: 100, functions: 100, lines: 100, }, }, include: ["test/**/*.spec.ts"], }, });