Rom
Rom
@lukasluecke What's your use case? @Fuzzyma A strategy is to apply `typescript-is`'s transfomer only for a couple of files, then performance is not an issue. For example only for `.telefunc.js`...
@lukasluecke Exhaustive list: https://github.com/akutruff/typescript-needs-types. Let me know if you find something suitable for Vite. @Fuzzyma You may want to use `esbuild` for `node_modules` but for user code using a slower...
For code diffs, see https://github.com/shikijs/shiki/issues/297.
> Would love to have more info about your user case Basically using `vite-node` instead of `ts-node` for https://github.com/brillout/vite-plugin-ssr/tree/master/boilerplates/boilerplate-vue-ts > PR is also greatly welcome! Right now using ts-node is...
Neat, I will check them out. Thanks :-)
Hi @jimfranke ! **EDIT**: This answer is outdated; see the new file upload propsal below. I'd say go for what you are most comfortable with. I'm assuming that you are...
I'm closing this but let me know if there anything that is not clear :-) Rom
Hi @DominikSerafin, Not yet, but I'm open to support it. What is your use case and tech stack?
The plan regarding file uploads is: ~~~js // Browser await server.submitForm(formData, {someNonFormData: 42}); ~~~ ~~~js // Node.js server.submitForm = function(formData, {someNonFormData}) { // By default, files are awaited for and...
I agree: - By default, files should be awaited for and loaded to memory before Wildcard invokes the endpoint function. No need to `await`, so basically what you proposed. -...