unibest/tsconfig.json

18 lines
491 B
JSON
Raw Normal View History

2023-12-21 15:26:15 +08:00
{
"compilerOptions": {
"module": "ESNext",
2023-12-21 15:26:15 +08:00
"sourceMap": true,
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
},
"lib": ["esnext", "dom"],
"types": ["@dcloudio/types", "@types/wechat-miniprogram", "@uni-helper/uni-app-types"]
},
"vueCompilerOptions": {
"nativeTags": ["block", "template", "component", "slot"]
2023-12-21 15:26:15 +08:00
},
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"],
"references": [{ "path": "./tsconfig.node.json" }]
2023-12-21 15:26:15 +08:00
}