代码拉取完成,页面将自动刷新
{
"compilerOptions": {
// "noImplicitAny": true, //不能使用any声明变量
"target": "es5", //编译目标版本
"lib": [
// 编译需要包括的库文件
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true, //允许混合编译js文件
"skipLibCheck": true,
//允许使用commonJs的方式import默认文件,import React from 'react
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"module": "esnext", //代码的模块系统
"moduleResolution": "node", //决定编译器的工作方式,决定各个文件调用import的流程
"resolveJsonModule": true,
"isolatedModules": true, //开启后会将每个文件作为单独的模块使用
"noEmit": true, //当发生编译错误的时候,编译器不会生成js代码
"jsx": "react" //允许编译器支持编译react代码
},
"extends": "./tsconfig.extend.json",
"include": ["src"],
"exclude": ["node_modules", "dist", "build"]
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。