unibest/tsconfig.json

27 lines
658 B
JSON
Raw Normal View History

2023-12-21 15:26:15 +08:00
{
"compilerOptions": {
"composite": true,
"skipLibCheck": true,
"module": "ESNext",
"moduleResolution": "bundler",
"allowSyntheticDefaultImports": true,
2023-12-21 15:26:15 +08:00
"sourceMap": true,
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
},
"lib": ["esnext", "dom"],
2023-12-23 13:42:31 +08:00
"types": [
"@dcloudio/types",
"@types/wechat-miniprogram",
"@uni-helper/uni-app-types",
"@uni-helper/uni-ui-types",
"@uni-helper/uni-cloud-types"
2023-12-23 13:42:31 +08:00
]
},
"vueCompilerOptions": {
"nativeTags": ["block", "template", "component", "slot"]
2023-12-21 15:26:15 +08:00
},
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"]
2023-12-21 15:26:15 +08:00
}