DEV Community

Discussion on: Create a React component library with Vite and Typescript

Collapse
 
nicolaserny profile image
Nicolas Erny

Hi :) It should generate the types. 🤔
In the vite.config.ts, I use this lib to generate types:
import dts from 'vite-plugin-dts';

plugins: [
react(),
dts({
insertTypesEntry: true,
}),
],