|
1 | 1 | { |
2 | | - "compilerOptions": { |
3 | | - "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo", |
4 | | - "target": "ES2022", |
5 | | - "useDefineForClassFields": true, |
6 | | - "lib": ["ES2022", "DOM", "DOM.Iterable"], |
7 | | - "module": "ESNext", |
8 | | - "skipLibCheck": true, |
9 | | - |
10 | | - /* Bundler mode */ |
11 | | - "moduleResolution": "bundler", |
12 | | - "allowImportingTsExtensions": true, |
13 | | - "verbatimModuleSyntax": true, |
14 | | - "moduleDetection": "force", |
15 | | - "noEmit": true, |
16 | | - "jsx": "react-jsx", |
17 | | - |
18 | | - /* Path mapping */ |
19 | | - "baseUrl": ".", |
20 | | - "paths": { |
21 | | - "@/*": [ |
22 | | - "./src/*" |
23 | | - ] |
24 | | - }, |
25 | | - |
26 | | - /* Linting */ |
27 | | - "strict": true, |
28 | | - "noUnusedLocals": true, |
29 | | - "noUnusedParameters": true, |
30 | | - "erasableSyntaxOnly": true, |
31 | | - "noFallthroughCasesInSwitch": true, |
32 | | - "noUncheckedSideEffectImports": true |
33 | | - }, |
34 | | - "include": ["src"] |
| 2 | + "compilerOptions": { |
| 3 | + "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo", |
| 4 | + "target": "ES2022", |
| 5 | + "useDefineForClassFields": true, |
| 6 | + "lib": ["ES2022", "DOM", "DOM.Iterable"], |
| 7 | + "module": "ESNext", |
| 8 | + "skipLibCheck": true, |
| 9 | + /* Bundler mode */ |
| 10 | + "moduleResolution": "bundler", |
| 11 | + "allowImportingTsExtensions": true, |
| 12 | + "verbatimModuleSyntax": true, |
| 13 | + "moduleDetection": "force", |
| 14 | + "noEmit": true, |
| 15 | + "jsx": "react-jsx", |
| 16 | + /* Path mapping */ |
| 17 | + "baseUrl": ".", |
| 18 | + "paths": { |
| 19 | + "@/*": ["./src/*"] |
| 20 | + }, |
| 21 | + /* Linting */ |
| 22 | + "strict": true, |
| 23 | + "noUnusedLocals": true, |
| 24 | + "noUnusedParameters": true, |
| 25 | + "erasableSyntaxOnly": true, |
| 26 | + "noFallthroughCasesInSwitch": true, |
| 27 | + "noUncheckedSideEffectImports": true |
| 28 | + }, |
| 29 | + "include": ["src"] |
35 | 30 | } |
0 commit comments