summaryrefslogtreecommitdiff
path: root/tsconfig.json
blob: 516868d3ee4859466acab061e4d0ba811454c6ee (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": {
    "allowJs": true,
    "baseUrl": ".",
    "module": "esnext",
    "noImplicitAny": true,
    "sourceMap": true,
    "removeComments": true,
    "preserveConstEnums": true,
    "target": "esnext",
    "moduleResolution": "node",
    "noImplicitReturns": true,
    "pretty": true,
    "noFallthroughCasesInSwitch": true,
    "allowUnreachableCode": false,
    "experimentalDecorators": true,
    "paths": {
      "*": ["*", "out/debug/*", "out/default/*", "out/release/*"]
    }
  },
  "include": ["js/main.ts"],
  "exclude": ["node_modules"]
}