blob: a66b5d8287e78315e62e5e1883ca93dbef3804f0 [file] [log] [blame]
Herbert Eiselt3d202a02019-02-11 14:54:12 +01001{
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}