summaryrefslogtreecommitdiff
path: root/tsconfig.json
blob: d78a8176402e914d087c6c09490c198882a65bbd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
  "compilerOptions": {
    "allowJs": true,
    "module": "esnext",
    "noImplicitAny": true,
    "sourceMap": true,
    "removeComments": true,
    "preserveConstEnums": true,
    "target": "es2017",
    "moduleResolution": "node",
    "noImplicitReturns": true,
    "pretty": true,
    "noFallthroughCasesInSwitch": true,
    "allowUnreachableCode": false,
    "experimentalDecorators": true
  },
  "include": ["js/main.ts"],
  "exclude": ["node_modules"]
}