chore: 初始化CYH TikTok短剧管理后台项目

创建完整的Vite+React+TypeScript后台项目基础结构,包含登录页、工作台、权限管理等功能页面,配置了项目依赖、构建脚本和基础样式
This commit is contained in:
2026-07-01 11:54:45 +08:00
commit 7da5df2419
21 changed files with 2771 additions and 0 deletions

23
tsconfig.node.json Normal file
View File

@@ -0,0 +1,23 @@
{
"compilerOptions": {
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
"target": "es2023",
"lib": ["ES2023"],
"types": ["node"],
"skipLibCheck": true,
/* Bundler mode */
"module": "nodenext",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"moduleDetection": "force",
"noEmit": true,
/* Linting */
"noUnusedLocals": true,
"noUnusedParameters": true,
"erasableSyntaxOnly": true,
"noFallthroughCasesInSwitch": true
},
"include": ["vite.config.ts"]
}