tomblachut / svelte-intellij

Svelte components in WebStorm and friends
MIT License
485 stars 38 forks source link

Support for namespaced components #257

Closed unlocomqx closed 2 years ago

unlocomqx commented 2 years ago

Hi, I used this code from svelte-cubed https://svelte-cubed.vercel.app/docs/getting-started

<script>
    import * as THREE from 'three';
    import * as SC from 'svelte-cubed';
</script>

<SC.Canvas>
    <SC.Mesh geometry={new THREE.BoxGeometry()} />
    <SC.PerspectiveCamera position={[1, 1, 3]} />
</SC.Canvas>

The extension didn't highlight the code correctly or detect that the import is used

2021-11-24 at 4 54 PM
russelldavis commented 2 years ago

Looks like this may be a dup of #8. @tomblachut any update on that? You wrote there that it was blocked on #2, but that has since been fixed.

unlocomqx commented 2 years ago

@russelldavis Yeah I forgot about that issue, I've seen a long time ago I'll close this one then Cheers