Skip to content

Commit

Permalink
fix: ignore GlobalComponents not exist error
Browse files Browse the repository at this point in the history
  • Loading branch information
johnsoncodehk committed Aug 3, 2022
1 parent 7251b5c commit 54a96a1
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/vue-language-core/src/utils/localTypes.ts
Expand Up @@ -26,10 +26,14 @@ type ForableSource<T> = [
][];
export type GlobalComponents =
// @ts-ignore
PickNotAny<import('vue').GlobalComponents, {}>
// @ts-ignore
& PickNotAny<import('@vue/runtime-core').GlobalComponents, {}>
// @ts-ignore
& PickNotAny<import('@vue/runtime-dom').GlobalComponents, {}>
& Pick<typeof vue,
// @ts-ignore
'Transition'
| 'TransitionGroup'
| 'KeepAlive'
Expand Down

0 comments on commit 54a96a1

Please sign in to comment.