Files
cunkebao_v3/Appbuild/jsconfig.json
超级老白兔 9193bda39f FEAT => 本次更新项目为:
初始化appbuild
2025-07-31 17:41:43 +08:00

30 lines
613 B
JSON

{
"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"
]
}