summaryrefslogtreecommitdiff
path: root/tsconfig.json
blob: 6840cf7b3d5734251fd23c84b78ab3cb6399ca3c (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
26
27
28
29
30
{
  "compilerOptions": {
    "allowJs": true,
    "allowUnreachableCode": false,
    "baseUrl": ".",
    "checkJs": true,
    "module": "esnext",
    "moduleResolution": "node",
    "noImplicitReturns": true,
    "noFallthroughCasesInSwitch": true,
    "noLib": true,
    "noUnusedLocals": true,
    "paths": {
      "*": ["*", "target/debug/*", "target/release/*"]
    },
    "preserveConstEnums": true,
    "pretty": true,
    "removeComments": true,
    "resolveJsonModule": true,
    "sourceMap": true,
    "strict": true,
    "target": "esnext",
    "types": []
  },
  "files": [
    "node_modules/typescript/lib/lib.esnext.d.ts",
    "js/main.ts",
    "js/compiler.ts"
  ]
}