import { defineConfig } from "vitest/config"; // Only run tests from src (TypeScript source). Without this, the compiled copies // in dist/ get picked up as duplicate (stale) test files. export default defineConfig({ test: { include: ["src/**/*.test.ts"], }, });