mirror of
https://github.com/fastapiadmin/FastapiAdmin.git
synced 2026-09-21 12:52:26 +00:00
refactor: 调整样式属性顺序以提高可读性 fix: 修复请求异常处理中的错误日志输出 chore: 添加stylelint相关依赖和配置 docs: 更新存储工具类的文档注释
34 lines
838 B
JSON
34 lines
838 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"lib": ["esnext", "dom"],
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["src/*"]
|
|
},
|
|
|
|
// 严格性和类型检查相关配置
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
// 模块和兼容性相关配置
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
|
|
// 调试和兼容性相关配置
|
|
"sourceMap": true,
|
|
"useDefineForClassFields": true,
|
|
"allowJs": true,
|
|
|
|
// 类型检查相关配置
|
|
"types": ["node", "vite/client", "element-plus/global"]
|
|
},
|
|
|
|
"include": ["src/**/*.ts", "src/**/*.vue", "vite.config.ts", "eslint.config.ts", "uno.config.ts"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|