I upgraded my Nuxt Version and even created a project from ground to test this new feature of Vue 3.3.3+ but it seems to not work with Nuxt (I tried the same exact example with Vue Pure and it worked just fine).
Here is the example that I'm testing:
<script setup lang="ts">
import {TestProps, SpecificProp} from '../types'
type MergedProps = TestProps & Omit<SpecificProp, 'id'>;
const props = defineProps<MergedProps>();
</script>
It does not work, when I try to run the project if gives the following error:
ERROR Cannot read properties of undefined (reading 'sys')
Shouldn't it be working since Nuxt is already using Vue 3.3.3+?