46 lines
976 B
JSON
46 lines
976 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"strict": true,
|
|
"jsx": "preserve",
|
|
"moduleResolution": "node",
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"useDefineForClassFields": true,
|
|
"sourceMap": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./*"],
|
|
"@/components/*": ["./components/*"],
|
|
"@/pages/*": ["./pages/*"],
|
|
"@/static/*": ["./static/*"],
|
|
"@/store/*": ["./store/*"],
|
|
"@/utils/*": ["./utils/*"],
|
|
"@/types/*": ["./types/*"],
|
|
"@/mock/*": ["./mock/*"]
|
|
},
|
|
"lib": ["esnext", "dom"],
|
|
"types": [
|
|
"@dcloudio/types",
|
|
"@types/wechat-miniprogram"
|
|
]
|
|
},
|
|
"include": [
|
|
"**/*.ts",
|
|
"**/*.d.ts",
|
|
"**/*.tsx",
|
|
"**/*.vue"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"unpackage",
|
|
"dist"
|
|
],
|
|
"vueCompilerOptions": {
|
|
"target": 3
|
|
}
|
|
}
|