mirror of
https://github.com/LiuYuYang01/ThriveX-Admin.git
synced 2026-05-06 21:50:31 +08:00
- 新增 .dockerignore, .env, .gitignore, .prettierrc 等基础配置文件,确保项目环境一致性。 - 添加初始的 Dockerfile 和 Vite 配置,支持项目的容器化和构建。 - 引入 ESLint 和 Prettier 配置,提升代码质量和一致性。 - 创建基本的页面和组件结构,便于后续开发和扩展。
30 lines
660 B
JSON
Executable File
30 lines
660 B
JSON
Executable File
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"lib": ["DOM", "DOM.Iterable", "ESNext"],
|
|
"module": "ESNext",
|
|
"skipLibCheck": true,
|
|
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["src/*"]
|
|
},
|
|
|
|
/* Bundler mode */
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "react-jsx",
|
|
|
|
/* Linting */
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noFallthroughCasesInSwitch": true
|
|
},
|
|
"include": ["src", "src/types/app/lib.d.ts"],
|
|
"references": [{ "path": "./tsconfig.node.json" }]
|
|
}
|