SPB Git

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.0 KB · 35 lines json
Raw Blame History
1{2  "$schema": "https://json.schemastore.org/tsconfig",3  "compilerOptions": {4    "target": "ES2022",5    "module": "NodeNext",6    "moduleResolution": "NodeNext",7    "lib": ["ES2023"],8    "types": ["node"],9    "strict": true,10    "noUncheckedIndexedAccess": true,11    "exactOptionalPropertyTypes": true,12    "noImplicitOverride": true,13    "noFallthroughCasesInSwitch": true,14    "noUnusedLocals": true,15    "noUnusedParameters": true,16    "verbatimModuleSyntax": true,17    "isolatedModules": true,18    "esModuleInterop": true,19    "forceConsistentCasingInFileNames": true,20    "skipLibCheck": true,21    "declaration": true,22    "declarationMap": true,23    "sourceMap": true,24    "composite": true,25    "baseUrl": ".",26    "paths": {27      "@tendril/shared": ["packages/shared/src/index.ts"],28      "@tendril/router": ["packages/router/src/index.ts"],29      "@tendril/egress": ["packages/egress/src/index.ts"],30      "@tendril/fetcher-http": ["packages/fetcher-http/src/index.ts"],31      "@tendril/extract": ["packages/extract/src/index.ts"]32    }33  }34}35