spb/worthdoing Public
Autonomous investigation agent that discovers, challenges, and ranks things genuinely worth doing — Claude + Firecrawl, Next.js 16, PostgreSQL
TypeScript 91.5%
SQL 5.8%
CSS 2.2%
1/**2 * WorthDoing.ai3 * Author: Simon-Pierre Boucher4 * Contact: contact@spboucher.ai5 * File: vitest.config.ts6 * Description: Vitest configuration — unit tests for agent logic, scoring, dedup, and schemas.7 */8import { defineConfig } from "vitest/config";9import path from "path";1011export default defineConfig({12 test: {13 include: ["tests/**/*.test.ts"],14 environment: "node",15 },16 resolve: {17 alias: {18 "@": path.resolve(__dirname, "src"),19 },20 },21});22