build(tsconfig): skipLibCheck to avoid dependecies error (#3093)

fix #3081
This commit is contained in:
rex 2020-04-28 20:37:39 +08:00 committed by GitHub
parent 2a456cd66c
commit 90b3aae5b2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View File

@ -21,7 +21,7 @@ export function nextTick(fn: Function) {
}, 1000 / 30);
}
let systemInfo: WechatMiniprogram.GetSystemInfoSuccessCallbackResult = null;
let systemInfo: WechatMiniprogram.GetSystemInfoSyncResult = null;
export function getSystemInfoSync() {
if (systemInfo == null) {
systemInfo = wx.getSystemInfoSync();

View File

@ -10,7 +10,8 @@
"types": ["miniprogram-api-typings"],
"paths": {
"definitions/*": ["./packages/definitions/*"]
}
},
"skipLibCheck": true
},
"include": ["packages/**/*"]
}