30 lines
613 B
JSON
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"
|
|
]
|
|
} |