tsconfig.json 676 字节
Newer Older
R
Ryan Dahl 已提交
1 2
{
  "compilerOptions": {
K
Kitson Kelly 已提交
3
    "allowJs": true,
K
Kitson Kelly 已提交
4
    "allowUnreachableCode": false,
K
Kitson Kelly 已提交
5
    "baseUrl": ".",
K
Kitson Kelly 已提交
6
    "checkJs": true,
K
Kitson Kelly 已提交
7
    "lib": ["esnext"],
K
Kitson Kelly 已提交
8 9
    "module": "esnext",
    "moduleResolution": "node",
R
Ryan Dahl 已提交
10 11
    "noImplicitReturns": true,
    "noFallthroughCasesInSwitch": true,
K
Kitson Kelly 已提交
12
    "noUnusedLocals": true,
K
Kitson Kelly 已提交
13 14 15
    "preserveConstEnums": true,
    "pretty": true,
    "removeComments": true,
16
    "resolveJsonModule": true,
K
Kitson Kelly 已提交
17
    "sourceMap": true,
K
Kitson Kelly 已提交
18
    "strict": true,
K
Kitson Kelly 已提交
19 20
    "target": "esnext",
    "types": []
R
Ryan Dahl 已提交
21
  },
22 23
  "files": [
    "js/lib.web_assembly.d.ts",
24
    "js/lib.deno_runtime.d.ts",
25
    "core/core.d.ts",
26
    "core/libdeno/libdeno.d.ts",
27 28 29
    "js/main.ts",
    "js/compiler.ts"
  ]
R
Ryan Dahl 已提交
30
}