import { defineConfig } from "vitest/config"; export default defineConfig({ test: { globals: true, environment: "node", exclude: ["**/node_modules/**", "**/dist/**", "**/tests/integration/**"], include: ["src/**/*.spec.ts", "src/**/*.test.ts"], coverage: { provider: "v8", reporter: ["text", "json", "html"], exclude: [ "**/node_modules/**", "**/dist/**", "**/*.spec.ts", "**/*.test.ts", "**/types/**", "**/*.module.ts", "**/main.ts", ], thresholds: { lines: 85, functions: 85, branches: 85, statements: 85, }, }, }, });