加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
tsconfig.json 1.08 KB
一键复制 编辑 原始数据 按行查看 历史
{
"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"]
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化