Open
Description
Issue: script tag syntax highlighting is broken
Workaround: use semi-colon or add new line.
Reproduction
<script lang="ts">
export type ButtonType = 'primary' | 'secondary' | 'tertiary'
</script>
<script setup lang="ts">
defineProps<{
type: ButtonType
}>()
</script>
<template>
<button>
<slot />
</button>
</template>