summaryrefslogtreecommitdiff
path: root/tsconfig.json
blob: 064a04e4d25019131cfcbe1de39d8aa962e65cd2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
  "compilerOptions": {
    "noEmitOnError": false,
    "noImplicitAny": false,
    "noImplicitReturns": true,
    "noUnusedParameters": false,
    "noUnusedLocals": true,
    "noFallthroughCasesInSwitch": true,
    "declaration": false,
    "sourceMap": false,
    "target": "es2017",
    "module": "commonjs",
    "removeComments": false,
    "noLib": false
  },
  "compileOnSave": false,
  "include": [
    "./gulpfile.ts"
  ]
}