mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
- 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
27 lines
No EOL
536 B
JSON
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/**/*"
|
|
]
|
|
} |