FEAT => 本次更新项目为:

初始化appbuild
This commit is contained in:
超级老白兔
2025-07-31 17:41:43 +08:00
parent c5d4e80e7c
commit 9193bda39f
125 changed files with 12385 additions and 15 deletions

30
Appbuild/jsconfig.json Normal file
View File

@@ -0,0 +1,30 @@
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": ["./*"],
"@components/*": ["./components/*"],
"@pages/*": ["./pages/*"],
"@static/*": ["./static/*"],
"@utils/*": ["./utils/*"],
"@api/*": ["./api/*"],
"@store/*": ["./store/*"],
"@styles/*": ["./styles/*"]
},
"target": "es6",
"module": "commonjs",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"skipLibCheck": true
},
"include": [
"**/*.js",
"**/*.vue",
"**/*.json"
],
"exclude": [
"node_modules",
"unpackage",
"dist"
]
}