tsconfig.json 627 字节
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 8
    "module": "esnext",
    "moduleResolution": "node",
R
Ryan Dahl 已提交
9 10
    "noImplicitReturns": true,
    "noFallthroughCasesInSwitch": true,
K
Kitson Kelly 已提交
11
    "noLib": true,
K
Kitson Kelly 已提交
12
    "noUnusedLocals": true,
K
Kitson Kelly 已提交
13
    "paths": {
R
Ryan Dahl 已提交
14
      "*": ["*", "out/debug/*", "out/default/*", "out/release/*"]
K
Kitson Kelly 已提交
15 16 17 18 19
    },
    "preserveConstEnums": true,
    "pretty": true,
    "removeComments": true,
    "sourceMap": true,
K
Kitson Kelly 已提交
20
    "strict": true,
K
Kitson Kelly 已提交
21 22
    "target": "esnext",
    "types": []
R
Ryan Dahl 已提交
23
  },
K
Kitson Kelly 已提交
24
  "files": ["node_modules/typescript/lib/lib.esnext.d.ts", "js/main.ts"]
R
Ryan Dahl 已提交
25
}