work-order/work-order-uniapp/jsconfig.json
2025-07-27 20:34:15 +08:00

34 lines
842 B
JSON

{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": ["./*"],
"@api/*": ["./api/*"],
"@components/*": ["./components/*"],
"@pages/*": ["./pages/*"],
"@static/*": ["./static/*"],
"@utils/*": ["./utils/*"],
"@store/*": ["./store/*"]
},
"target": "ES6",
"module": "commonjs",
"allowSyntheticDefaultImports": true,
"checkJs": false,
"experimentalDecorators": true,
"allowJs": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"esModuleInterop": true
},
"include": [
"**/*.js",
"**/*.vue",
"**/*.json"
],
"exclude": [
"node_modules",
"unpackage",
".hbuilderx",
".idea"
]
}