SPB Git

spb/khaelor Public

KHAELOR — a terminal-native autonomous engineering agent powered by Anthropic.

TypeScript 82.9% HTML 14.9% CSS 1.1% JavaScript 0.7%
430 B · 19 lines typescript
Raw Blame History
1/**2 * KHAELOR3 * File: vitest.config.ts4 * Description: Vitest configuration — first-party tests only; reference clones are excluded.5 *6 * Author: Simon-Pierre Boucher7 * Contact: contact@spboucher.ai8 */910import { defineConfig } from "vitest/config";1112export default defineConfig({13  test: {14    include: ["tests/**/*.test.ts"],15    exclude: ["node_modules/**", "dist/**", "references/**"],16    environment: "node",17  },18});19