加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
tsconfig.base.json 627 Bytes
一键复制 编辑 原始数据 按行查看 历史
小白菜 提交于 2024-03-18 10:18 . fix: 忽略全局打包样式文件
{
"include": ["packages","typings/env.d.ts","typings/custom-types.d.ts"],
"exclude": ["**/__tests__/**", "**/tests/**", "**/dist","**/theme"],
"compilerOptions": {
"baseUrl": ".",
"strict": true,
"allowJs": false,
"sourceMap": false,
"noUnusedLocals": true,
"removeComments": false,
"target": "es2018",
"module": "ESNext",
"skipLibCheck": true,
"esModuleInterop": true,
"moduleResolution": "Node",
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"types": ["node", "vite/client"],
"paths": {
"@exercise-form/*": ["packages/*"]
}
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化