|
| 1 | +{ |
| 2 | + "compileOnSave": false, |
| 3 | + "compilerOptions": { |
| 4 | + "allowJs": false, |
| 5 | + "allowSyntheticDefaultImports": true, |
| 6 | + "allowUnreachableCode": false, |
| 7 | + "allowUnusedLabels": false, |
| 8 | + "alwaysStrict": true, |
| 9 | + "baseUrl": ".", |
| 10 | + "declaration": true, |
| 11 | + "diagnostics": false, |
| 12 | + "emitBOM": false, |
| 13 | + "emitDecoratorMetadata": false, |
| 14 | + "esModuleInterop": true, |
| 15 | + "experimentalDecorators": false, |
| 16 | + "forceConsistentCasingInFileNames": true, |
| 17 | + "importHelpers": true, |
| 18 | + "importsNotUsedAsValues": "remove", |
| 19 | + "inlineSourceMap": false, |
| 20 | + "inlineSources": false, |
| 21 | + "isolatedModules": false, |
| 22 | + "jsx": "react", |
| 23 | + "lib": ["dom", "dom.iterable", "esnext"], |
| 24 | + "listEmittedFiles": false, |
| 25 | + "listFiles": false, |
| 26 | + "module": "commonjs", |
| 27 | + "moduleResolution": "node", |
| 28 | + "noEmit": false, |
| 29 | + "noEmitHelpers": false, |
| 30 | + "noEmitOnError": false, |
| 31 | + "noFallthroughCasesInSwitch": true, |
| 32 | + "noImplicitAny": true, |
| 33 | + "noImplicitReturns": true, |
| 34 | + "noImplicitThis": true, |
| 35 | + "noImplicitUseStrict": false, |
| 36 | + "noUnusedLocals": true, |
| 37 | + "noUnusedParameters": true, |
| 38 | + "paths": { |
| 39 | + "*": ["@types/*"] |
| 40 | + }, |
| 41 | + "preserveConstEnums": true, |
| 42 | + "pretty": true, |
| 43 | + "removeComments": true, |
| 44 | + "resolveJsonModule": true, |
| 45 | + "skipDefaultLibCheck": true, |
| 46 | + "skipLibCheck": true, |
| 47 | + "sourceMap": true, |
| 48 | + "strict": true, |
| 49 | + "strictBindCallApply": true, |
| 50 | + "strictFunctionTypes": true, |
| 51 | + "strictNullChecks": true, |
| 52 | + "strictPropertyInitialization": true, |
| 53 | + "stripInternal": true, |
| 54 | + "suppressExcessPropertyErrors": false, |
| 55 | + "suppressImplicitAnyIndexErrors": false, |
| 56 | + "target": "es6" |
| 57 | + } |
| 58 | +} |
0 commit comments