mirror of
https://github.com/fastapiadmin/FastapiAdmin.git
synced 2026-09-20 20:39:55 +00:00
1. 移除 .prettierignore 和 tsconfig.json 中对 src/types/import/ 的配置 2. 全局替换 @/utils/message 导入为直接从 element-plus 导入组件 3. 移动并统一组件路径:将 widget/fa-icon-button 迁移至 others/fa-icon-button 4. 新增多环境配置示例文件与docker部署配置 5. 补充类型导入与类型文件统一导出 6. 修复卡片样式与布局细节问题 7. 移除过时的 initIconify 同步初始化函数
45 lines
1.2 KiB
JSON
Executable File
45 lines
1.2 KiB
JSON
Executable File
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"strict": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"noImplicitOverride": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"jsx": "preserve",
|
|
"sourceMap": true,
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"allowImportingTsExtensions": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"lib": ["ES2024", "DOM", "DOM.Iterable"],
|
|
"types": ["vite/client", "node"],
|
|
"skipLibCheck": true,
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"@views/*": ["./src/views/*"],
|
|
"@imgs": ["./src/assets/images"],
|
|
"@icons": ["./src/assets/images/svg"],
|
|
"@utils": ["./src/utils"],
|
|
"@utils/*": ["./src/utils/*"],
|
|
"@stores": ["./src/store"],
|
|
"@stores/*": ["./src/store/*"],
|
|
"@plugins": ["./src/plugins"],
|
|
"@styles": ["./src/styles"],
|
|
"@api/*": ["./src/api/*"],
|
|
"@fa_imgs/*": ["./src/assets/fa_imgs/*"],
|
|
"@fa_imgs": ["./src/assets/fa_imgs"]
|
|
}
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/**/*.d.ts",
|
|
"src/**/*.tsx",
|
|
"src/**/*.vue",
|
|
"build/vitePluginStart.ts"
|
|
],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|