Describe the bug
When running Typescript mode and you have either an export let varName: Type, or type Type = type without a line-ending semicolon last in a script block, the syntax highlighting breaks.
The problem with type declarations I've seen for ages, but the problem with component properties arrived yesterday after updating VS Code.
I think the screenshots are quite explanatory.
Syntax highlight breaks after ZeRow

Syntax highlighting breaks after the ending curly brace for type declaration Test

Syntax highlight works when ending type declaration with a semicolon

Syntax highlighting works when ending property declaration with semicolon

Syntax highlighting works when ending script block with some other statement or expression

Reproduction
This simple snippet is sufficient to to reproduce the bug.
<script lang="ts">
export let test: any
</script>
Expected behaviour
I expect the ending </script> tag to be correctly highlighted
System Info
Which package is the issue about?
Svelte for VS Code extension
Additional Information, eg. Screenshots
No response