|
1 | 1 | { |
| 2 | + "$schema": "https://json.schemastore.org/tsconfig", |
2 | 3 | "compilerOptions": { |
3 | | - "target": "esnext", |
| 4 | + "composite": true, |
| 5 | + "allowImportingTsExtensions": false, |
| 6 | + "declaration": true, |
| 7 | + "declarationMap": true, |
| 8 | + "isolatedDeclarations": false, |
| 9 | + "emitDeclarationOnly": true, |
| 10 | + "esModuleInterop": true, |
| 11 | + "isolatedModules": true, |
4 | 12 | "jsx": "react-jsx", |
5 | | - "lib": ["es2023"], |
6 | | - "moduleDetection": "force", |
| 13 | + "target": "ESNext", |
7 | 14 | "module": "preserve", |
8 | | - "moduleResolution": "bundler", |
| 15 | + "moduleDetection": "force", |
9 | 16 | "resolveJsonModule": true, |
10 | | - "types": ["node"], |
| 17 | + "skipLibCheck": true, |
11 | 18 | "strict": true, |
12 | 19 | "noUnusedLocals": true, |
13 | | - "declaration": true, |
14 | | - "emitDeclarationOnly": true, |
15 | | - "esModuleInterop": true, |
16 | | - "isolatedModules": true, |
17 | | - "verbatimModuleSyntax": true, |
18 | | - "skipLibCheck": true |
| 20 | + "noUnusedParameters": true, |
| 21 | + "erasableSyntaxOnly": true, |
| 22 | + "forceConsistentCasingInFileNames": true, |
| 23 | + "noFallthroughCasesInSwitch": true, |
| 24 | + "noUncheckedSideEffectImports": true, |
| 25 | + "useDefineForClassFields": true, |
| 26 | + "verbatimModuleSyntax": true |
19 | 27 | }, |
20 | | - "include": ["src"] |
| 28 | + "files": [], |
| 29 | + "references": [ |
| 30 | + { |
| 31 | + "path": "./playground/tsconfig.app.json" |
| 32 | + }, |
| 33 | + { |
| 34 | + "path": "./playground/tsconfig.node.json" |
| 35 | + }, |
| 36 | + { |
| 37 | + "path": "./tsconfig.lib.json" |
| 38 | + }, |
| 39 | + { |
| 40 | + "path": "./tsconfig.node.json" |
| 41 | + }, |
| 42 | + { |
| 43 | + "path": "./tsconfig.test.json" |
| 44 | + } |
| 45 | + ], |
| 46 | + |
21 | 47 | } |
0 commit comments