summaryrefslogtreecommitdiff
path: root/tsconfig.json
blob: ff4eaf917ac03416e8140cccdc2b1385802fa2e5 (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
{
  "compilerOptions": {
    "allowJs": true,
    "noEmitOnError": false,
    "noImplicitAny": true,
    "noImplicitReturns": true,
    "noUnusedParameters": false,
    "noUnusedLocals": true,
    "noFallthroughCasesInSwitch": true,
    "declaration": false,
    "sourceMap": true,
    "target": "es2017",
    "module": "commonjs",
    "removeComments": false,
    "noLib": false,
    "strict": true,
    "strictNullChecks": false,
    "experimentalDecorators": true
  },
  "compileOnSave": false,
  "include": [
    "./src/**/*.ts"
  ],
  "exclude": [
    "./src/client/app/**/*.ts"
  ]
}