tsconfig.json 463 字节
Newer Older
R
Ryan Dahl 已提交
1 2 3
{
  "compilerOptions": {
    "allowJs": true,
K
Kitson Kelly 已提交
4
    "module": "esnext",
R
Ryan Dahl 已提交
5 6 7 8 9
    "noImplicitAny": true,
    "sourceMap": true,
    "removeComments": true,
    "preserveConstEnums": true,
    "target": "es2017",
K
Kitson Kelly 已提交
10
    "moduleResolution": "node",
R
Ryan Dahl 已提交
11 12 13 14 15 16
    "noImplicitReturns": true,
    "pretty": true,
    "noFallthroughCasesInSwitch": true,
    "allowUnreachableCode": false,
    "experimentalDecorators": true
  },
R
Ryan Dahl 已提交
17 18
  "include": ["js/main.ts"],
  "exclude": ["node_modules"]
R
Ryan Dahl 已提交
19
}