瀏覽代碼

Update tsconfig.json

Use standalone tsconfig.
master
TheoryOfNekomata 1 年之前
父節點
當前提交
a2d9c7409b
共有 1 個文件被更改,包括 15 次插入2 次删除
  1. +15
    -2
      tsconfig.json

+ 15
- 2
tsconfig.json 查看文件

@@ -1,7 +1,20 @@
{
"exclude": ["node_modules"],
"extends": "../../../tsconfig.json",
"compilerOptions": {
"rootDir": "src"
"rootDir": "src",
"module": "ESNext",
"lib": ["DOM", "ESNext"],
"importHelpers": true,
"declaration": true,
"sourceMap": true,
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"moduleResolution": "node",
"jsx": "react",
"esModuleInterop": true,
"target": "ES2017"
}
}

Loading…
取消
儲存