|
2 | 2 | "$schema": "https://json.schemastore.org/tsconfig", |
3 | 3 | "extends": "@tsconfig/node20/tsconfig.json", |
4 | 4 | "compilerOptions": { |
| 5 | + "lib": ["es2023", "DOM"], |
| 6 | + "pretty": true, |
5 | 7 | "declaration": true, |
6 | | - "lib": ["es2023", "DOM"], |
| 8 | + "newLine": "LF", |
| 9 | + "preserveConstEnums": false, |
| 10 | + "isolatedModules": false, |
| 11 | + "sourceMap": true, |
| 12 | + "allowJs": false, |
| 13 | + "checkJs": false, |
| 14 | + "forceConsistentCasingInFileNames": true, |
| 15 | + "experimentalDecorators": false, |
| 16 | + "emitDecoratorMetadata": false, |
| 17 | + "noErrorTruncation": true, |
| 18 | + "allowUnreachableCode": false, |
| 19 | + "allowUnusedLabels": false, |
| 20 | + "alwaysStrict": true, |
| 21 | + |
7 | 22 | "removeComments": true, |
8 | | - "emitDecoratorMetadata": true, |
9 | | - "experimentalDecorators": true, |
10 | 23 | "allowSyntheticDefaultImports": true, |
11 | | - "sourceMap": true, |
12 | 24 | "outDir": "./build", |
13 | 25 | "baseUrl": "./", |
14 | 26 | "incremental": true, |
|
20 | 32 | "strictFunctionTypes": false, |
21 | 33 | "strictNullChecks": false, |
22 | 34 | "strictPropertyInitialization": false, |
23 | | - "alwaysStrict": false, |
24 | 35 | "noImplicitAny": false, |
25 | 36 | "noImplicitThis": false, |
26 | 37 | "useUnknownInCatchVariables": false |
|
0 commit comments