summaryrefslogtreecommitdiff
path: root/tsconfig.json
blob: b8db5d062ea8ef2115930a6d3e4f96baaec82eec (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
{
  "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"]
}