svelte-intellij icon indicating copy to clipboard operation
svelte-intellij copied to clipboard

Svelte components in WebStorm and friends

Results 62 svelte-intellij issues
Sort by recently updated
recently updated
newest added

In some cases when using a derived store, the types are reported incorrectly. The return value of the derived store in this case in is a generated sdk from a...

If we have ```html let className export { className as class } export let test ``` IDE does not suggest exported `class` as a valid prop ![obrazek](https://user-images.githubusercontent.com/10332247/182217990-8f8f9a48-20f7-4555-846c-1a7dabb17eff.png) but the "normal"...

Renaming a `.svelte` component currently does not adjust imports and instantiations of the component, but just renames the file.

Adding a TS script block to my Svelte file (``) allows me to use TypeScript in Svelte, but Svelte preprocess does not validate the code using TS type checking ([by...

Since actions use user-defined functions, it'll be nice to have an intention that imports them (similar to components). ![image](https://user-images.githubusercontent.com/65342367/130133910-c90a8e8e-d881-4534-b7a7-6a855b6f799d.png)

When auto-importing TypeScript types, the plugin inserts a normal `import { Type1, Type2 } from "somewhere"` import, even though `compilerOptions.importNotUsedAsValues` is set to `"error"` in `.svelte-kit/tsconfig.json`. The proper import would...

Is support for sveltekit's "routes/" endpoints planned for the Endpoints tool view?

I noticed that `delete` keyword is not highlighted in `` block (neither JS or TS) I was following [WEB-54774](https://youtrack.jetbrains.com/issue/WEB-54774), since I had the similar bug in Svelte files and I...

https://svelte.dev/docs#template-syntax-const ``` export let boxes; {#each boxes as box} {@const area = box.width * box.height} {box.width} * {box.height} = {area} {/each} ``` in this example I receive this error: `Expected...

Just installed WebStorm and the plugin so this might be a configuration issue. I'm also not really sure if this is the right place to create this issue so let...