chore: initial commit
Some checks failed
Synchronize to Gitee / repo-sync (push) Has been cancelled
Typos Checking / Spell Check with Typos (push) Has been cancelled

This commit is contained in:
2026-06-23 11:56:23 +08:00
commit 72e2110987
2883 changed files with 367388 additions and 0 deletions

39
frontend/tsconfig.json Normal file
View File

@@ -0,0 +1,39 @@
{
"exclude": [
// 排除掉哪些类库
"packages/**/node_modules",
"packages/**/dist/**"
],
"compilerOptions": {
"allowJs": true, // 允许编译器编译JSJSX文件
"noEmit": true,
"target": "esnext", // 使用es最新语法
"useDefineForClassFields": true,
"allowSyntheticDefaultImports": true, // 允许异步导入模块,配合自动导入插件使用
"module": "esnext", // 使用ES模块语法
"moduleResolution": "node",
"strict": true, // 严格模式
"jsx": "preserve",
"sourceMap": true, // 代码映射
"resolveJsonModule": true,
"isolatedModules": true,
"esModuleInterop": true,
"lib": [
"esnext",
"dom"
],
"skipLibCheck": true, // 跳过node依赖包语法检查
"types": [
"node",
// "vite-plugin-svg-icons/client"
], // 手动导入TS类型声明文件
"paths": {
"#/*": [
"/types/*"
],
}
},
"include": [
"packages/**/*"
],
}