加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
tsconfig.json 753 Bytes
一键复制 编辑 原始数据 按行查看 历史
Melody 提交于 2022-12-06 20:13 . 首次提交,完成了基本配置
{
"compilerOptions": {
"rootDir": "./src",
"target": "es5", // 指定 ECMAScript 目标版本
"module": "ESNext", //指定生成那个模块的代码
"strict": true, // 开启所有的严格检查配置
"esModuleInterop": true,
"outDir": "dist",
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"checkJs": true, // 检查js文件
"allowJs": true, // 允许编译js文件
"skipLibCheck": true, // 跳过所有声明文件的检查
"jsx": "react", // tsx文件中支持jsx
"noEmit": true, // 禁止编译器生成文件
"moduleResolution": "node", // 将模块解析模式设置为 node 模式
"paths": {
"@/": ["./src/"]
}
},
"include": ["src"],
"exclude": ["node_module", "dist"]
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化