// ts项目配置文件
{
  "compilerOptions": {
    "strictNullChecks": true,
    "noImplicitAny": true,
    "module": "esnext",
    "allowSyntheticDefaultImports": true,
    "target": "es5",
    "allowJs": true,
    "experimentalDecorators": true,
    "noImplicitThis": true,
    "noImplicitReturns": true,
    "alwaysStrict": true,
    "noFallthroughCasesInSwitch": true,
    "strict": true,
    "removeComments": false,
    "pretty": true,
    "noEmit": true,
    "moduleResolution": "node",
    "strictPropertyInitialization": true,
    "declaration": true,
    "downlevelIteration": true,
    "baseUrl": ".",
    "lib": ["esnext", "dom", "dom.iterable"],
    "jsx": "react",
    "typeRoots": ["./typings"]
  },
  "exclude": [],
  "include": ["./**/*.ts", "./**/*.tsx"]
}
