Various "Failed to resolve extends base type" when extending interfaces and using them as props
This is new in Nuxt 4.1 with Vite rolldown
I have something like this:
interface Props extends Omit<SomeInterface, 'createdAt' | 'editedAt' | 'category'> {
createdAt: Date | string;
editedAt?: Date | string | null;
order: number;
summary?: string;
}
And Im getting errors like:
Any ideas? Is this not valid in Vue?
I have something like this:
interface Props extends Omit<SomeInterface, 'createdAt' | 'editedAt' | 'category'> {
createdAt: Date | string;
editedAt?: Date | string | null;
order: number;
summary?: string;
}
And Im getting errors like:
Any ideas? Is this not valid in Vue?
