summaryrefslogtreecommitdiff
path: root/tsconfig.json
blob: 769d75b46eadf7f5eb0a671c4c79598a2c428d49 (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
{
  "compilerOptions": {
    "allowJs": true,
    "module": "commonjs",
    "noImplicitAny": true,
    "baseUrl": ".",
    "removeComments": true,
    "preserveConstEnums": true,
    "declaration": true,
    "target": "es2017",
    "lib": ["es2017", "DOM"],
    "noEmit": true,
    "noUnusedLocals": true,
    "noImplicitReturns": true,
    "noImplicitThis": true,
    "alwaysStrict": true,
    "noUnusedParameters": false,
    "pretty": true,
    "noFallthroughCasesInSwitch": true,
    "allowUnreachableCode": false,
    "experimentalDecorators": true
  },
  "include": ["*.ts", "*.js"],
  "exclude": ["tests.ts"]
}