mirror of
https://github.com/fastapiadmin/FastapiAdmin.git
synced 2026-09-22 13:05:18 +00:00
- 添加项目配置文件(tsconfig, eslint, prettier等) - 实现基础路由和页面布局 - 添加全局状态管理和API请求封装 - 集成UI组件库和主题系统 - 添加文档网站和示例页面 - 配置CI/CD和工作流
47 lines
1015 B
JSON
47 lines
1015 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
|
"useDefineForClassFields": true,
|
|
"baseUrl": ".",
|
|
"module": "ESNext",
|
|
"paths": {
|
|
"@/*": ["./*"],
|
|
"~/*": ["docs/.vitepress/theme/*"]
|
|
},
|
|
"types": ["node", "vitepress/client"],
|
|
"skipLibCheck": true,
|
|
|
|
/* Bundler mode */
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "preserve",
|
|
|
|
/* Linting */
|
|
"strict": true,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
/* Node.js specific options */
|
|
"composite": true,
|
|
"allowSyntheticDefaultImports": true
|
|
},
|
|
"include": [
|
|
"docs/.vitepress/**/*",
|
|
"**/*.vue",
|
|
"**/*.ts",
|
|
"**/*.mts",
|
|
"**/*.tsx",
|
|
"**/*.md",
|
|
"env.d.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"docs/.vitepress/dist",
|
|
"docs/.vitepress/cache"
|
|
]
|
|
} |