| 1 | { |
| 2 | "$schema": "https://json.schemastore.org/tsconfig", |
| 3 | "compilerOptions": { |
| 4 | "target": "ES2022", |
| 5 | "module": "NodeNext", |
| 6 | "moduleResolution": "NodeNext", |
| 7 | "lib": ["ES2022", "DOM"], |
| 8 | "strict": true, |
| 9 | "noUncheckedIndexedAccess": true, |
| 10 | "noImplicitOverride": true, |
| 11 | "noFallthroughCasesInSwitch": true, |
| 12 | "exactOptionalPropertyTypes": false, |
| 13 | "esModuleInterop": true, |
| 14 | "skipLibCheck": true, |
| 15 | "forceConsistentCasingInFileNames": true, |
| 16 | "resolveJsonModule": true, |
| 17 | "isolatedModules": true, |
| 18 | "verbatimModuleSyntax": false, |
| 19 | "declaration": true, |
| 20 | "declarationMap": true, |
| 21 | "sourceMap": true, |
| 22 | "incremental": true |
| 23 | } |
| 24 | } |
| 25 |