Skip to content

Commit

Permalink
fix(language-core): disable lib check on global types file (#4767)
Browse files Browse the repository at this point in the history
  • Loading branch information
KazariEX authored Aug 30, 2024
1 parent 8bc2416 commit 63fca0b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/language-core/lib/codegen/globalTypes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ import { getSlotsPropertyName } from '../utils/shared';

export function generateGlobalTypes(lib: string, target: number, strictTemplates: boolean) {
const fnPropsType = `(K extends { $props: infer Props } ? Props : any)${strictTemplates ? '' : ' & Record<string, unknown>'}`;
return `
return `// @ts-nocheck
const __VLS_globalComponents = { ...{} as import('${lib}').GlobalComponents };
declare const __VLS_intrinsicElements: __VLS_IntrinsicElements;
Expand Down

0 comments on commit 63fca0b

Please sign in to comment.