// author: simon-pierre boucher import { defineConfig } from "vitest/config"; import tsconfigPaths from "vite-tsconfig-paths"; export default defineConfig({ plugins: [tsconfigPaths({ projects: ["./tsconfig.base.json"] })], test: { include: ["packages/**/*.test.ts", "apps/**/*.test.ts"], environment: "node", coverage: { provider: "v8", include: ["packages/**/src/**"], thresholds: { lines: 85, functions: 85, branches: 75, statements: 85 }, }, }, });