28 lines
680 B
JSON
28 lines
680 B
JSON
{
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"skipLibCheck": true,
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"allowSyntheticDefaultImports": true,
|
|
"sourceMap": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
},
|
|
"outDir": "dist",
|
|
"lib": ["esnext", "dom"],
|
|
"types": [
|
|
"@dcloudio/types",
|
|
"@types/wechat-miniprogram",
|
|
"@uni-helper/uni-app-types",
|
|
"@uni-helper/uni-ui-types",
|
|
"@uni-helper/uni-cloud-types"
|
|
]
|
|
},
|
|
"vueCompilerOptions": {
|
|
"nativeTags": ["block", "template", "component", "slot"]
|
|
},
|
|
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"]
|
|
}
|