"fs")
"allowSyntheticDefaultImports": true, // 允许从没有默认导出的模块进行默认导入
"strict": true, // 启用所有严格类型检查选项..."forceConsistentCasingInFileNames": true, // 禁止对同一个文件的不一致的引用。..."noEmit": false, // 不输出(意思是不编译代码,只执行类型检查)
"jsx": "react-jsx",
"noUnusedLocals": false, /.../ 报告未使用的本地变量的错误
"noUnusedParameters": false, // 报告未使用参数的错误
"experimentalDecorators": true, //...启用对ES装饰器的实验性支持
},
"include": [
"src"
],
"exclude": [
"node_modules",
"build",