summaryrefslogtreecommitdiff
path: root/tsconfig.json
blob: 806143644c930d14e3c3702f93cde5e1d139d64f (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,
    "allowUnreachableCode": false,
    "baseUrl": ".",
    "checkJs": true,
    "module": "esnext",
    "moduleResolution": "node",
    "noImplicitReturns": true,
    "noFallthroughCasesInSwitch": true,
    "noLib": true,
    "noUnusedLocals": true,
    "paths": {
      "*": ["*", "out/debug/*", "out/default/*", "out/release/*"]
    },
    "preserveConstEnums": true,
    "pretty": true,
    "removeComments": true,
    "sourceMap": true,
    "strict": true,
    "target": "esnext",
    "types": []
  },
  "files": ["node_modules/typescript/lib/lib.esnext.d.ts", "js/main.ts"]
}