|
1 | 1 | {
|
2 | 2 | "compilerOptions": {
|
3 |
| - "noImplicitAny": true, |
4 |
| - "noImplicitThis": true, |
5 |
| - "module": "es2022", |
6 |
| - "target": "es2022", |
7 |
| - "strict": true, |
8 |
| - "moduleResolution": "node", |
| 3 | + "listEmittedFiles": true, |
9 | 4 | "allowSyntheticDefaultImports": true,
|
10 |
| - "resolveJsonModule": true, |
11 | 5 | "esModuleInterop": true,
|
12 |
| - "allowJs": true, |
13 |
| - "downlevelIteration": true, |
14 |
| - "baseUrl": "./", |
15 |
| - "outDir": "dist", |
| 6 | + "target": "es6", |
| 7 | + "module": "commonjs", |
| 8 | + "skipDefaultLibCheck": true, |
| 9 | + "skipLibCheck": true, |
| 10 | + "moduleResolution": "node", |
| 11 | + "noImplicitAny": true, |
| 12 | + "noImplicitThis": false, |
| 13 | + "strict": true, |
| 14 | + "strictFunctionTypes": true, |
| 15 | + "isolatedModules": true, |
16 | 16 | "declaration": true,
|
| 17 | + "lib": [ |
| 18 | + "dom", |
| 19 | + "dom.iterable", |
| 20 | + "esnext" |
| 21 | + ], |
| 22 | + "baseUrl": "./", |
| 23 | + "outDir": "./dist", |
17 | 24 | "paths": {
|
18 |
| - "@interfaces/*": ["src/interfaces/*"], |
19 |
| - "@pages/*": ["src/pages/*"], |
20 |
| - "@common/*": ["src/common/*"], |
21 |
| - "@data/*": ["src/data/*"], |
22 |
| - "@types/*": ["src/types/*"], |
23 |
| - "@utils/*": ["src/utils/*"], |
24 |
| - "@versions/*": ["src/versions/*"] |
| 25 | + "@interfaces/*": [ |
| 26 | + "src/interfaces/*" |
| 27 | + ], |
| 28 | + "@pages/*": [ |
| 29 | + "src/pages/*" |
| 30 | + ], |
| 31 | + "@data/*": [ |
| 32 | + "src/data/*" |
| 33 | + ], |
| 34 | + "@types/*": [ |
| 35 | + "src/types/*" |
| 36 | + ], |
| 37 | + "@utils/*": [ |
| 38 | + "src/utils/*" |
| 39 | + ], |
| 40 | + "@versions/*": [ |
| 41 | + "src/versions/*" |
| 42 | + ] |
25 | 43 | },
|
26 |
| - "typeRoots": ["types", "node_modules/@types"], |
27 |
| - "skipLibCheck": true |
| 44 | + "typeRoots": [ |
| 45 | + "types", |
| 46 | + "node_modules/@types" |
| 47 | + ], |
28 | 48 | },
|
29 |
| - "include": ["src/**/*"], |
30 |
| - "exclude": ["node_modules"] |
| 49 | + "include": [ |
| 50 | + "src/**/*" |
| 51 | + ], |
| 52 | + "exclude": [ |
| 53 | + "node_modules" |
| 54 | + ] |
31 | 55 | }
|
0 commit comments