Skip to content

language-server-0.17.1

Compare
Choose a tag to compare
@dummdidumm dummdidumm released this 26 Sep 12:19
· 1 commit to master since this release
fc2144b
  • breaking(svelte5): only generate function component shape in runes mode (#2517). This means you can no longer just do Component in type positions. Instead you need to prepend it with typeof. Here's how you do it:
    • ...when typing a component instance: Before: let x: Component. After: let x: ReturnType<typeof Component>
    • ...when typing a component constructor/function: Before let x: typeof Component. After let x: typeof Component (no change)
  • fix: include files indirectly belonging to a project into correct project (#2488)
  • fix: check project files update more aggressively before assigning service (#2518)
  • chore: upgrade to chokidar 4 (#2502)