Leonardo Marrega

Results 2 comments of Leonardo Marrega

This can be fixed using [@rollup/plugin-typescript](https://www.npmjs.com/package/@rollup/plugin-typescript): - Install `@rollup/plugin-typescript` - Create `vite.config.mjs`: ```js import typescript from '@rollup/plugin-typescript'; import { defineConfig } from 'vite'; export default defineConfig({ plugins: [typescript()] }) ```...

I took some time to find the code where the seroval plugins are specified and found that in the `server-runtime.ts` contains a plugin list as a module constant. Then tracked...