Hofer Ivan
Hofer Ivan
@cmidkiff87 looks like a bad hack. There is an option to alter the `tsconfig.json` that `SvelteKit` produces: https://kit.svelte.dev/docs/configuration#typescript In one of my projects this looks like this: ```js import adapter...
@nickmura maybe try to upgrade to the latest `SvelteKit` version.
> This feels like something that could be done in userland, no? Almost everything can be done in userland ^^. But like you ready mentioned, you need to hardcode the...
> It doesn't feel like it belongs on `route`, to be honest — the route doesn't change between `load` functions. Right, this would not rerun unless someone uses `await parent()`....
Originally posted in #3090, here I describe how `goto`, `fetch` (and like @ebeloded mentioned `invalidate`, `prefetch`, `prefetchRoutes`) could be improved with some type-information: ### Describe the problem In larger projects...
Today I thought about how this could be implemented. I took a look how the current types are referenced and how the topics discussed above could fit in. > I'm...
Ah great that there exists a package for `trpc` now, I hacked it together manually in a recent project of mine. Thanks for sharing the link @ambiguous48
> * Need to account for the base path, this loosened up the typings making them less useful If it would just be used inside the `routes` folder, similar to...
I made some thoughts about this topic again, because I had a bug in one of my `SvelteKit` applications. The issue was that I have used `$page.params.id` in one of...
@kwangure I really like the idea of those helper functions. I was just about to write another comment on this thread ^^. What I want to mention is: `SvelteKit` could...