blob: c95005660e384f786744777f232c9b072b25ed86 [file] [log] [blame]
herberte6d0d672019-12-14 01:05:47 +01001{
2 "compilerOptions": {
3 "baseUrl": "./src",
4 "outDir": "./dist",
5 "sourceMap": true,
6 "forceConsistentCasingInFileNames": true,
herbert05ef0232020-02-01 16:00:00 +01007 "allowSyntheticDefaultImports": true,
herberte6d0d672019-12-14 01:05:47 +01008 "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 "node",
29 "prop-types",
30 "react",
31 "react-dom"
32 ]
33 },
34 "exclude": [
35 "dist",
36 "node_modules"
37 ]
38}