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 配置,提升代码质量和一致性。 - 创建基本的页面和组件结构,便于后续开发和扩展。
11 lines
213 B
JSON
Executable File
11 lines
213 B
JSON
Executable File
{
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"skipLibCheck": true,
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"allowSyntheticDefaultImports": true
|
|
},
|
|
"include": ["vite.config.ts"]
|
|
}
|