language-tools
language-tools copied to clipboard
The Svelte Language Server, and official extensions which use it
## TL:DR; Since the syntax highlighting works fine on VS Code, I was assuming that it was a GitHub linguist issue. However, there was a feedback that it might be...
> In my case the cause of the slow IntelliSense was the addition of `"svelte-google-materialdesign-icons": "^0.8.3"` this exports all of its components for the icons and makes autocomplete very slow...
`svelte-check` will not use a `jsconfig.json`'s `exclude` option to ignore `.svelte` files. Please see [this](https://github.com/kierangilliam/svelte-check-ignores-excludes) to reproduce. If you open this project in vscode and navigate to `jsconfig.json` you'll see...
This came up in a conversation with @TehShrike - assume you have a project which you slowly want to convert from JS to TS. You have `"allowJs": false` and you...
### Describe the bug According to https://github.com/sveltejs/svelte/issues/4442 props' default values are really *initial* values as they are only used when a component is first created. While I consider this, [as](https://github.com/sveltejs/svelte/issues/1467)...
Loose collection of things we should do for v4: - make TypeScript a peer dependency Timing: - after we investigated Volar - with Svelte 5?
This type in our `d.ts` file in `svelte2tsx`: ```ts type HTMLProps = Omit & Override; ``` Results in the `data-${string}` type overriding any more narrow types like `data-sveltekit-..`. In other...
### Describe the bug Not sure what happen but the Svelte Intellisense is extremely slow after I update the VSCode: ``*.svelte`` file example:  ``*.ts`` file example  As you...
### Describe the bug When working in a monorepo, you can use path alias and includes from the tsconfig to import svelte files from shared libraries. This works fine until...
### Describe the bug We use CSS containers in our code, but svelte-check breaks if we use [Container Query Length Units](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_container_queries#container_query_length_units) (cqw, cqh, ...) in our SCSS code. We have...