aboutsummaryrefslogtreecommitdiffstats
path: root/sdnr/wt/odlux/tsconfig.json
blob: c4cc6e0d41a800e8bd9007c79e2bbd05a673a529 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
  "compilerOptions": {
    "sourceMap": true,
    "forceConsistentCasingInFileNames": true,
    "allowSyntheticDefaultImports": true,
    "allowUnreachableCode": false,
    "allowUnusedLabels": false,
    "noFallthroughCasesInSwitch": true,
    "noImplicitAny": true,
    "noImplicitReturns": true,
    "noImplicitThis": true,
    "strictNullChecks": true,
    "pretty": true,
    "newLine": "LF",
    "module": "es2015",
    "target": "es2016",
    "moduleResolution": "node",
    "experimentalDecorators": true,
    "jsx": "preserve",
    "lib": [
      "dom",
      "es2015",
      "es2016"
    ],
    "types": [
      "prop-types",
      "react",
      "react-dom"
    ]
  },
  "exclude": [
    "node_modules",
    "apps/*/dist",
    "apps/*/node_modules"
  ],
  "include": [
    "apps/*/src"
  ]
}