spb/tendril Public
Tendril — web ingestion platform (scrape/crawl/map/search) on macOS Apple Silicon: WebKit fidelity, authenticated pages, deterministic testable extraction. A self-hosted Firecrawl alternative.
JavaScript 82.6%
TypeScript 11.8%
HTML 5.3%
1// author: simon-pierre boucher <contact@spboucher.ai>2import { defineConfig } from "vitest/config";3import tsconfigPaths from "vite-tsconfig-paths";45export default defineConfig({6 plugins: [tsconfigPaths({ projects: ["./tsconfig.base.json"] })],7 test: {8 include: ["packages/**/*.test.ts", "apps/**/*.test.ts"],9 environment: "node",10 coverage: {11 provider: "v8",12 include: ["packages/**/src/**"],13 thresholds: { lines: 85, functions: 85, branches: 75, statements: 85 },14 },15 },16});17