tsconfig.json 650 字节
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
    "paths": {
14
      "*": ["*", "target/debug/*", "target/release/*"]
K
Kitson Kelly 已提交
15 16 17 18
    },
    "preserveConstEnums": true,
    "pretty": true,
    "removeComments": true,
19
    "resolveJsonModule": true,
K
Kitson Kelly 已提交
20
    "sourceMap": true,
K
Kitson Kelly 已提交
21
    "strict": true,
K
Kitson Kelly 已提交
22 23
    "target": "esnext",
    "types": []
R
Ryan Dahl 已提交
24
  },
K
Kitson Kelly 已提交
25
  "files": ["js/lib.web_assembly.d.ts", "js/main.ts", "js/compiler.ts"]
R
Ryan Dahl 已提交
26
}