| 1 | { |
| 2 | "compilerOptions": { |
| 3 | "module": "ESNext", |
| 4 | "target": "ES2023", |
| 5 | "moduleResolution": "Bundler", |
| 6 | "strictNullChecks": true, |
| 7 | "strictFunctionTypes": true, |
| 8 | "checkJs": true, |
| 9 | "allowUmdGlobalAccess": true, |
| 10 | "allowSyntheticDefaultImports": true, |
| 11 | "resolveJsonModule": true, |
| 12 | "strictBindCallApply": true |
| 13 | }, |
| 14 | "exclude": [ |
| 15 | "**/node_modules/**", |
| 16 | "**/dist/**", |
| 17 | "**/.git/**", |
| 18 | "public/**", |
| 19 | "backups/**", |
| 20 | "data/**", |
| 21 | "cache/**", |
| 22 | "src/tokenizers/**", |
| 23 | "docker/**" |
| 24 | ] |
| 25 | } |