/** * KHAELOR * File: vitest.config.ts * Description: Vitest configuration — first-party tests only; reference clones are excluded. * * Author: Simon-Pierre Boucher * Contact: contact@spboucher.ai */ import { defineConfig } from "vitest/config"; export default defineConfig({ test: { include: ["tests/**/*.test.ts"], exclude: ["node_modules/**", "dist/**", "references/**"], environment: "node", }, });