A tool for tailing the firehose and matching images against known perceptual hashes, and then labeling them.
1{
2 "compilerOptions": {
3 "target": "ES2022",
4 "module": "ESNext",
5 "lib": ["ES2022"],
6 "moduleResolution": "bundler",
7 "allowImportingTsExtensions": true,
8 "noEmit": true,
9 "composite": false,
10 "strict": true,
11 "esModuleInterop": true,
12 "skipLibCheck": true,
13 "forceConsistentCasingInFileNames": true,
14 "resolveJsonModule": true,
15 "isolatedModules": true,
16 "types": ["bun-types"]
17 },
18 "include": ["src/**/*", "tests/**/*"],
19 "exclude": ["node_modules"]
20}