import { defineConfig } from "vitest/config"; export default defineConfig({ test: { globals: true, include: ["src/**/*.test.ts"], coverage: { provider: "v8", reporter: ["text", "text-summary", "lcov"], include: ["src/**"], exclude: ["src/**/*.test.*"], thresholds: { branches: 80, functions: 80, lines: 80, statements: 80, }, }, }, });