|
6 | 6 | "moduleDetection": "force", |
7 | 7 | "outDir": "./dist", |
8 | 8 | "rootDir": "src", |
9 | | - "strict": true, |
10 | | - "esModuleInterop": true, |
11 | | - "skipLibCheck": true, |
12 | | - "forceConsistentCasingInFileNames": true, |
13 | | - "resolveJsonModule": true, |
14 | | - "declaration": true, |
15 | | - "declarationMap": false, |
16 | | - "sourceMap": false, |
17 | 9 | "baseUrl": ".", |
18 | 10 | "paths": { |
19 | 11 | "@/*": ["src/*"], |
20 | 12 | "@algorithms/*": ["src/algorithms/*"], |
21 | 13 | "@interfaces/*": ["src/interfaces/*"], |
22 | 14 | "@utils/*": ["src/utils/*"] |
23 | 15 | }, |
| 16 | + "tsBuildInfoFile": ".tsbuildinfo", |
| 17 | + "importsNotUsedAsValues": "remove", |
| 18 | + "allowSyntheticDefaultImports": true, |
| 19 | + "allowUnreachableCode": false, |
| 20 | + "allowUnusedLabels": false, |
| 21 | + "declaration": true, |
| 22 | + "declarationMap": false, |
| 23 | + "emitDecoratorMetadata": true, |
| 24 | + "esModuleInterop": true, |
| 25 | + "exactOptionalPropertyTypes": true, |
| 26 | + "experimentalDecorators": true, |
| 27 | + "forceConsistentCasingInFileNames": true, |
| 28 | + "incremental": true, |
| 29 | + "isolatedModules": true, |
| 30 | + "noFallthroughCasesInSwitch": true, |
24 | 31 | "noImplicitAny": true, |
| 32 | + "noImplicitOverride": true, |
25 | 33 | "noImplicitReturns": true, |
26 | 34 | "noImplicitThis": true, |
| 35 | + "noPropertyAccessFromIndexSignature": true, |
| 36 | + "noUncheckedIndexedAccess": true, |
27 | 37 | "noUnusedLocals": true, |
28 | 38 | "noUnusedParameters": true, |
29 | | - "exactOptionalPropertyTypes": true, |
30 | | - "noUncheckedIndexedAccess": true, |
31 | | - "noPropertyAccessFromIndexSignature": true, |
32 | | - "noImplicitOverride": true, |
33 | | - "allowUnusedLabels": false, |
34 | | - "allowUnreachableCode": false, |
35 | | - "noFallthroughCasesInSwitch": true, |
36 | | - "useUnknownInCatchVariables": true, |
37 | | - "verbatimModuleSyntax": true, |
38 | | - "isolatedModules": true, |
39 | | - "allowSyntheticDefaultImports": true, |
40 | | - "experimentalDecorators": true, |
41 | | - "emitDecoratorMetadata": true, |
42 | 39 | "removeComments": true, |
43 | | - "importsNotUsedAsValues": "remove" |
| 40 | + "resolveJsonModule": true, |
| 41 | + "skipLibCheck": true, |
| 42 | + "sourceMap": false, |
| 43 | + "strict": true, |
| 44 | + "useUnknownInCatchVariables": true, |
| 45 | + "verbatimModuleSyntax": true |
44 | 46 | }, |
45 | 47 | "include": ["src/**/*"], |
46 | 48 | "exclude": ["node_modules", "dist", "tests", "src/scripts"] |
|
0 commit comments