This commit is contained in:
2026-03-22 01:07:31 +08:00
parent ffac6fc267
commit faf00ec231
333 changed files with 35212 additions and 0 deletions

32
admin-web/tsconfig.app.json Executable file
View File

@@ -0,0 +1,32 @@
{
"extends": "@vue/tsconfig/tsconfig.dom.json",
"compilerOptions": {
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
"lib": ["ESNext", "DOM", "DOM.Iterable"],
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"],
"#/*": ["./src/types/*"]
},
"resolveJsonModule": true,
"types": [
"vite-plugin-pages/client",
"vite-plugin-vue-meta-layouts/client",
"vite-plugin-app-loading/client",
"element-plus/global"
],
"allowJs": false,
"strict": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": false,
"noUnusedLocals": true,
"noUnusedParameters": true,
"sourceMap": true,
"esModuleInterop": true
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.vue"
]
}