first commit

This commit is contained in:
Your Name
2026-01-19 14:00:23 +08:00
commit 49a7d6eabd
532 changed files with 46910 additions and 0 deletions

23
tsconfig.json Normal file
View File

@@ -0,0 +1,23 @@
{
"extends": "@vue/tsconfig/tsconfig.web.json",
"include": [
"global.d.ts",
"src/**/*",
"src/**/*.vue",
"components.d.ts",
"auto-imports.d.ts",
"typings/**/*.d.ts"
],
"compilerOptions": {
"isolatedModules": true,
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
}
},
"references": [
{
"path": "./tsconfig.config.json"
}
]
}