Files
vtj/apps/h5/tsconfig.json
“chenhuachun” 1f9f418e94 refactor(config): 优化h5和renderer的配置结构
- 调整h5项目tsconfig.json中paths路径写法,统一添加./前缀
- 规范include和exclude字段的数组格式
- renderer provider模块中添加UniApp库支持,扩展框架能力
2026-06-13 10:49:17 +08:00

17 lines
289 B
JSON

{
"extends": "./node_modules/@vtj/cli/config/tsconfig.web.json",
"compilerOptions": {
"paths": {
"@/*": ["./src/*"],
"$vtj/*": ["./.vtj/*"]
}
},
"include": ["src"],
"exclude": [".vtj"],
"references": [
{
"path": "./tsconfig.node.json"
}
]
}