Skip to content

Commit

Permalink
Merge pull request #26046 from storybookjs/norbert/fix-vite-mainconfg…
Browse files Browse the repository at this point in the history
…-type-issue

Vite: Fix config typing issue of the `typescript` property
  • Loading branch information
ndelangen authored Feb 16, 2024
2 parents 31e3d9c + 23ff2df commit 54cb838
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/frameworks/react-vite/src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ type TypescriptOptions = TypescriptOptionsBase & {
*/
export type StorybookConfig = Omit<
StorybookConfigBase,
keyof StorybookConfigVite | keyof StorybookConfigFramework
keyof StorybookConfigVite | keyof StorybookConfigFramework | 'typescript'
> &
StorybookConfigVite &
StorybookConfigFramework & {
Expand Down

0 comments on commit 54cb838

Please sign in to comment.