34 lines
842 B
JSON
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"
|
||
|
]
|
||
|
}
|