tomblachut / svelte-intellij

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

Attribute autocompletion does not work for components created via svelte-kit package #270

Closed MarvinJWendt closed 2 years ago

MarvinJWendt commented 2 years ago

Hi, the attribute autocomplete is not working for imported components that are written in TypeScript.

Here is a screenshot of a component that was created locally: image

Here a screenshot of the same component (copy-paste code) from an external library (created via svelte-kit package):

image

Imports

import {Button, ContainerCenterOnPage, Heading} from "@marvinjwendt/svelte-component-kit"; // Autocomplete does not work
import TestComp from "../components/TestComp.svelte"; // Autocomplete does work
tomblachut commented 2 years ago

Hi, duplicate of #206