init: 初始化模板项目

This commit is contained in:
2025-08-25 11:57:14 +08:00
commit aaa949bd7d
90 changed files with 20722 additions and 0 deletions

20
tsconfig.json Normal file
View File

@@ -0,0 +1,20 @@
{
"compilerOptions": {
"esModuleInterop": true,
"strictNullChecks": true,
"noUncheckedIndexedAccess": true,
"paths": {
"app/*": ["./packages/app/*"],
"@my/ui/*": ["./packages/ui/*"]
}
},
"extends": "./tsconfig.base",
"exclude": [
"**/node_modules",
"**/dist",
"**/types",
"apps/next/out",
"apps/next/.next",
"apps/next/.tamagui"
]
}