Skip to content

Commit

Permalink
fix: disable lib check on global types file
Browse files Browse the repository at this point in the history
  • Loading branch information
KazariEX committed Aug 30, 2024
1 parent 306936b commit 21e2527
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 21e2527

Please sign in to comment.