I just tried upgrading Storybook to the SB7 beta and switched from webpack to the Vite builder.
So far so good, but I've lost all my generated type descriptions.
The config in main.ts showed errors with the typescript key. I've tried both with and without the config and either way the descriptions are gone and the controls aren't as accurate.
Here is the config if that's helpful:
typescript: {
check: false,
checkOptions: {},
reactDocgen: 'react-docgen-typescript',
reactDocgenTypescriptOptions: {
shouldExtractLiteralValuesFromEnum: true,
propFilter: (prop) =>
prop.parent ? !/node_modules/.test(prop.parent.fileName) : true,
},
},