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 my code I had something like: ```svelte const obj = { key: "foo" }; {#each obj as i, { key }} {key} {/each} ``` I learned the [hard way](https://svelte.dev/tutorial/each-blocks)...

When a library uses `SvelteComponentTyped` to define props, events, & slots on a component, the plugin should index the props, events, & slots. I have a working implementation of using...

area: types

I discovered an edge case where the Svelte intellij plugin sees a syntax error for a line that is valid Svelte. To trigger the issue, I used an `each` loop...

bug
platform: parser

To reproduce this issue, try the following: ```svelte $: [a, b, c] = [1, 2, 3]; ``` This is a valid segment that is semantically similar to `let [a, b,...

bug
area: JS extensions

Hi, i'm trying to use the Webstorm debugger for svelte files written in Typescript. I've followed [this article](https://www.jetbrains.com/help/webstorm/running-and-debugging-typescript.html#ws_ts_debug) on how to use the debugger when using an external application server...

Currently, the only support we have for Navigate To Declaration in Svelte HTML is back to components, from a component name in a tag. I suggest the following: - Props:...

### Example store store.ts ``` import type { Readable } from 'svelte/store' export const store: Readable = { subscribe(callback) { callback('Hello world') return () => { console.log('unsubscribe') } } }...

bug

When using a svelte-preprocess [external files](https://github.com/sveltejs/svelte-preprocess#external-files) feature I create an external TypeScript file for a component and assign some values to variables in there and import something else to it,...

src/App.svelte :: import {myStore} from './folder/component.store';

As title says, there is issue with attribute like 'disabled' that throws "Wrong attribute value" error if it written like so: disabled='{isConnected}' For this concrete attribute 'disabled' i did a...

platform: inspections
area: html