[Typescript] Enforcing Code Quality

tsconfig.json:

{
  "compilerOptions": {
    "target": "es5",
    "lib": ["es6", "dom"],
    "module": "commonjs",
    "outDir": "dist",
    "noUnusedLocals": true,
    "noUnusedParameters": true,
    "noFallthroughCasesInSwitch": true,
    "noImplicitReturns": true
  }
}

 

posted @ 2020-10-05 18:11  Zhentiw  阅读(106)  评论(0)    收藏  举报