José Pablo Ramírez Vargas
José Pablo Ramírez Vargas
The d.ts file is for Intellisense support. If not included, VS Code will report "could not find module definition or its declaration", or something like that.
Ok, thanks. So long story short: The `exclude` property in `tsconfig.json` is only for a subset of the TypeScript functionality and it doesn't cover type checking. Svelte tooling has no...
I would but I don't know JsDoc enough. I quickly gave it a shot. I defined the type in `packages/svelte/types/index.d.ts`, but the type needs importing in `packages/svelte/src/internal/client/render.js`. This is where...
Here's the PR: https://github.com/sveltejs/svelte/pull/13674
Generally speaking, smaller projects should grow in bundle size while larger projects should decrease in bundle size. As I understand things, Svelte v4 generates all the needed code to fulfill...
This topic interests me if it takes the route of runtime-deduplication, which is something I would like to see happening to create Svelte micro-frontends where foreign signals can participate reactively...
Allow use of `title` on elements like `` that contain no text? This is super common when using icon libraries. Also note that Bootstrap converts labels visually to buttons, so...
> That is exactly what this issue should prevent: `title` is not a valid replacement for something like a tooltip component - it does not work on mobile and screen...
@XurxoMF try my router: [@wjfe/n-savant](https://github.com/WJSoftware/wjfe-n-savant). It works perfectly fine in Electron when doing hash routing. Path routing doesn't work. I have identified the problems around path routing and have compiled...
Hello, @joshnuss. This is the same I asked some time ago: I called it a validator function, exactly for upgrade scenarios. It would be a callback to the function specified...