omnivore/packages/api/tsconfig.json
Timothy Atapagra 5e711f074b feat(api): implement content error classification and communication service
- Developed ContentErrorClassifier to classify and handle content processing errors with retry logic.
- Created ErrorCommunicationService to manage user notifications for errors and retry successes.
- In use with previous api. Will likely be migrated to nest api
2025-10-09 13:10:32 -04:00

27 lines
No EOL
536 B
JSON

{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"outDir": "./dist",
"rootDir": "./src",
"resolveJsonModule": true,
"skipLibCheck": true,
"noImplicitAny": false,
"strictNullChecks": false,
"strict": false,
"lib": ["ES2020"],
"allowJs": true,
"isolatedModules": true,
"composite": true,
"declaration": true
},
"include": [
"src/**/*.ts",
"src/**/*.js",
"test/**/*.ts",
"jest.config.ts"
],
"exclude": [
"dist/**/*",
"node_modules/**/*"
]
}