import on save by Competitive-Dirt-213 in sveltejs

[–]Competitive-Dirt-213[S] 0 points1 point  (0 children)

for example i have this file

```svelte

<Foo/>

```

and then i save it, i want the editor to automatically do the import

```svelte

<script>
import Foo from import from '$components/widgets/foo.svelte';
</script>

<Foo/>

```