8-stage TypeScript pipeline with Apify scraping, Claude AI analysis, real-time dashboard with SSE, PostgreSQL cost tracking, and Apify budget controls. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
17 lines
383 B
JSON
17 lines
383 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"esModuleInterop": true,
|
|
"strict": true,
|
|
"outDir": "dist",
|
|
"rootDir": ".",
|
|
"skipLibCheck": true,
|
|
"resolveJsonModule": true,
|
|
"declaration": false,
|
|
"sourceMap": false
|
|
},
|
|
"include": ["agents/**/*.ts"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|