summaryrefslogtreecommitdiff
path: root/src/tsconfig.json
blob: 2909810da0eed14c8e194f8cf4febeaced1a01bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
  "compilerOptions": {
    "noEmitOnError": false,
    "noImplicitAny": false,
    "noImplicitReturns": true,
    "noUnusedParameters": false,
    "noUnusedLocals": true,
    "noFallthroughCasesInSwitch": true,
    "declaration": false,
    "sourceMap": false,
    "target": "es6",
    "module": "commonjs",
    "removeComments": false,
    "noLib": false
  },
  "compileOnSave": false,
  "include": [
    "./**/*.ts"
  ],
  "exclude": [
    "./web/app/**/*.ts"
  ]
}