When using script setup syntax with Typescript in Vue 3, how can I set a component's options to disable attribute inheritance?
JavaScript code:
app.component('date-picker', {
inheritAttrs: false,
// [..]
})
Script setup with Typescript:
<script setup lang="ts">
// how can I set inheritAttrs here?
</script>