1 Star 0 Fork 2.6K

pifrok/plus-ui

forked from 疯狂的狮子Li/plus-ui 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
tsconfig.json 1.49 KB
一键复制 编辑 原始数据 按行查看 历史
疯狂的狮子Li 提交于 2025-03-12 12:14 +08:00 . fix 修复 pr书写错误问题
{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"baseUrl": ".",
// https://vite.dev/config/build-options.html#build-target
"target": "ES2020",
"module": "ESNext",
"moduleResolution": "Bundler",
"lib": ["ESNext", "DOM", "DOM.Iterable"],
"skipLibCheck": true,
// This setting lets you specify a file for storing incremental compilation information as a part of composite projects which enables faster building of larger TypeScript codebases.
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.tsbuildinfo",
"strict": true,
"allowJs": true,
"jsx": "preserve",
"sourceMap": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"noEmit": true,
"paths": {
"@/*": ["./src/*"]
},
"types": ["node", "vite/client"],
// 自定义配置
"noImplicitAny": false, // 禁用 隐式的any错误
"removeComments": true, // 移除 ts注释
"experimentalDecorators": true, // 启用实验性的装饰器支持
"strictFunctionTypes": false, // 禁用严格函数类型检查
"strictNullChecks": false, // 禁用严格的空值检查
"allowSyntheticDefaultImports": true, // 允许默认导入
"forceConsistentCasingInFileNames": true // 强制在文件名中使用一致的大小写
},
"include": [
"src/**/*.ts",
"src/**/*.vue",
"vite.config.ts",
"vitest.config.ts",
"eslint.config.ts",
"src/**/*.d.ts"
],
"exclude": ["node_modules", "dist", "src/**/__tests__/*"]
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
TypeScript
1
https://gitee.com/pifrok/plus-ui.git
git@gitee.com:pifrok/plus-ui.git
pifrok
plus-ui
plus-ui
ts

搜索帮助