import { defineConfig } from "vitest/config"; export default defineConfig({ test: { includeSource: ["src/**/*.{ts,mts,cts}"], typecheck: { include: [ "src/**/*.{ts,mts,cts}", "tests/**/*.test.{ts,mts,cts}", ], tsconfig: "tsconfig.app.json", enabled: true, ignoreSourceErrors: true, }, }, });