mirror of
https://gitee.com/newgateway/vtj.git
synced 2026-06-25 06:31:56 +08:00
- 调整h5项目tsconfig.json中paths路径写法,统一添加./前缀 - 规范include和exclude字段的数组格式 - renderer provider模块中添加UniApp库支持,扩展框架能力
17 lines
289 B
JSON
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"
|
|
}
|
|
]
|
|
}
|