|
1 | 1 | { |
2 | 2 | "compileOnSave": true, |
3 | 3 | "compilerOptions": { |
4 | | - "lib": ["es2022", "dom"], |
5 | | - "target": "es2020", |
6 | | - "module": "commonjs", |
7 | | - "moduleResolution": "node", |
8 | | - "esModuleInterop": true, |
9 | | - "isolatedModules": true, |
10 | | - "strict": true, |
| 4 | + "lib": ["es2024"], |
| 5 | + "module": "NodeNext", |
| 6 | + "moduleResolution": "NodeNext", |
11 | 7 | "outDir": "lib", |
12 | 8 | "declaration": true, |
13 | | - "declarationMap": true |
| 9 | + "declarationMap": true, |
| 10 | + "emitDeclarationOnly": false, |
| 11 | + "declarationDir": "lib", |
| 12 | + "isolatedModules": true, |
| 13 | + "verbatimModuleSyntax": false, |
| 14 | + "useDefineForClassFields": true, |
| 15 | + "esModuleInterop": false, |
| 16 | + "allowImportingTsExtensions": false, |
| 17 | + "allowUnreachableCode": false, |
| 18 | + "allowUnusedLabels": false, |
| 19 | + "alwaysStrict": true, |
| 20 | + "exactOptionalPropertyTypes": false, |
| 21 | + "noFallthroughCasesInSwitch": true, |
| 22 | + "noImplicitAny": true, |
| 23 | + "noImplicitOverride": true, |
| 24 | + "noImplicitReturns": true, |
| 25 | + "noImplicitThis": true, |
| 26 | + "noPropertyAccessFromIndexSignature": true, |
| 27 | + "noUncheckedIndexedAccess": true, |
| 28 | + "noUnusedLocals": true, |
| 29 | + "noUnusedParameters": true, |
| 30 | + "strict": true, |
| 31 | + "strictBindCallApply": true, |
| 32 | + "strictBuiltinIteratorReturn": true, |
| 33 | + "strictFunctionTypes": true, |
| 34 | + "strictNullChecks": true, |
| 35 | + "strictPropertyInitialization": true, |
| 36 | + "useUnknownInCatchVariables": true, |
| 37 | + "noUncheckedSideEffectImports": true |
14 | 38 | }, |
15 | | - "include": ["src"], |
16 | | - "watchOptions": { |
17 | | - "watchFile": "useFsEvents", |
18 | | - "watchDirectory": "useFsEvents", |
19 | | - "fallbackPolling": "dynamicPriority", |
20 | | - "synchronousWatchDirectory": true |
21 | | - } |
| 39 | + "include": ["src"] |
22 | 40 | } |
0 commit comments