Herbert Eiselt | 3d202a0 | 2019-02-11 14:54:12 +0100 | [diff] [blame] | 1 | { |
| 2 | "compilerOptions": { |
| 3 | "baseUrl": "./src", |
| 4 | "outDir": "./dist", |
| 5 | "sourceMap": true, |
| 6 | "forceConsistentCasingInFileNames": true, |
| 7 | "allowSyntheticDefaultImports": false, |
| 8 | "allowUnreachableCode": false, |
| 9 | "allowUnusedLabels": false, |
| 10 | "noFallthroughCasesInSwitch": true, |
| 11 | "noImplicitAny": true, |
| 12 | "noImplicitReturns": true, |
| 13 | "noImplicitThis": true, |
| 14 | "strictNullChecks": true, |
| 15 | "pretty": true, |
| 16 | "newLine": "LF", |
| 17 | "module": "es2015", |
| 18 | "target": "es2016", |
| 19 | "moduleResolution": "node", |
| 20 | "experimentalDecorators": true, |
| 21 | "jsx": "preserve", |
| 22 | "lib": [ |
| 23 | "dom", |
| 24 | "es2015", |
| 25 | "es2016" |
| 26 | ], |
| 27 | "types": [ |
| 28 | "prop-types", |
| 29 | "react", |
| 30 | "react-dom" |
| 31 | ] |
| 32 | }, |
| 33 | "exclude": [ |
| 34 | "dist", |
| 35 | "node_modules" |
| 36 | ] |
| 37 | } |