summaryrefslogtreecommitdiff
path: root/tsconfig.json
blob: f62cf4c6d024c9a82dfa02f7e747d698fb915696 (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
{
  "compilerOptions": {
    "allowJs": true,
    "allowUnreachableCode": false,
    "baseUrl": ".",
    "checkJs": true,
    "lib": ["esnext"],
    "module": "esnext",
    "moduleResolution": "node",
    "noImplicitReturns": true,
    "noFallthroughCasesInSwitch": true,
    "noUnusedLocals": true,
    "preserveConstEnums": true,
    "pretty": true,
    "removeComments": true,
    "resolveJsonModule": true,
    "sourceMap": true,
    "strict": true,
    "target": "esnext",
    "types": []
  },
  "files": [
    "js/lib.web_assembly.d.ts",
    "js/lib.deno_runtime.d.ts",
    "js/main.ts",
    "js/compiler.ts"
  ]
}