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