Describe the bug
organize-imports does not work when there is a <script context="module"> block
To Reproduce
<script context="module">
// do whatever
</script>
<script lang="ts">
import B from './B';
import A from './A';
</script>
Expected behavior
Imports should be organized in both script blocks.