|
1 | 1 | {
|
2 | 2 | "compilerOptions": {
|
| 3 | + "noErrorTruncation": true, |
3 | 4 | /* Visit https://aka.ms/tsconfig.json to read more about this file */
|
4 | 5 |
|
5 | 6 | /* Projects */
|
|
11 | 12 | // "disableReferencedProjectLoad": true, /* Reduce the number of projects loaded automatically by TypeScript. */
|
12 | 13 |
|
13 | 14 | /* Language and Environment */
|
14 |
| - "target": "es2020", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */ |
| 15 | + "target": "es2020" /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */, |
15 | 16 | // "lib": [], /* Specify a set of bundled library declaration files that describe the target runtime environment. */
|
16 | 17 | // "jsx": "preserve", /* Specify what JSX code is generated. */
|
17 | 18 | // "experimentalDecorators": true, /* Enable experimental support for TC39 stage 2 draft decorators. */
|
|
24 | 25 | // "useDefineForClassFields": true, /* Emit ECMAScript-standard-compliant class fields. */
|
25 | 26 |
|
26 | 27 | /* Modules */
|
27 |
| - "module": "es2020", /* Specify what module code is generated. */ |
| 28 | + "module": "es2020" /* Specify what module code is generated. */, |
28 | 29 | // "rootDir": "./", /* Specify the root folder within your source files. */
|
29 |
| - "moduleResolution": "node", /* Specify how TypeScript looks up a file from a given module specifier. */ |
| 30 | + "moduleResolution": "node" /* Specify how TypeScript looks up a file from a given module specifier. */, |
30 | 31 | // "baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */
|
31 | 32 | // "paths": {}, /* Specify a set of entries that re-map imports to additional lookup locations. */
|
32 | 33 | // "rootDirs": [], /* Allow multiple folders to be treated as one when resolving modules. */
|
|
69 | 70 | /* Interop Constraints */
|
70 | 71 | // "isolatedModules": true, /* Ensure that each file can be safely transpiled without relying on other imports. */
|
71 | 72 | // "allowSyntheticDefaultImports": true, /* Allow 'import x from y' when a module doesn't have a default export. */
|
72 |
| - "esModuleInterop": true, /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables `allowSyntheticDefaultImports` for type compatibility. */ |
| 73 | + "esModuleInterop": true /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables `allowSyntheticDefaultImports` for type compatibility. */, |
73 | 74 | // "preserveSymlinks": true, /* Disable resolving symlinks to their realpath. This correlates to the same flag in node. */
|
74 |
| - "forceConsistentCasingInFileNames": true, /* Ensure that casing is correct in imports. */ |
| 75 | + "forceConsistentCasingInFileNames": true /* Ensure that casing is correct in imports. */, |
75 | 76 |
|
76 | 77 | /* Type Checking */
|
77 |
| - "strict": true, /* Enable all strict type-checking options. */ |
| 78 | + "strict": true /* Enable all strict type-checking options. */, |
78 | 79 | // "noImplicitAny": true, /* Enable error reporting for expressions and declarations with an implied `any` type.. */
|
79 | 80 | // "strictNullChecks": true, /* When type checking, take into account `null` and `undefined`. */
|
80 | 81 | // "strictFunctionTypes": true, /* When assigning functions, check to ensure parameters and the return values are subtype-compatible. */
|
|
96 | 97 |
|
97 | 98 | /* Completeness */
|
98 | 99 | // "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */
|
99 |
| - "skipLibCheck": true /* Skip type checking all .d.ts files. */ |
100 |
| - }, |
| 100 | + "skipLibCheck": true /* Skip type checking all .d.ts files. */ |
| 101 | + } |
101 | 102 | }
|
0 commit comments