You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
327 B
8 lines
327 B
|
3 weeks ago
|
// The addon package.json incorrectly exports types, so we need to override them here.
|
||
|
|
// See: https://github.com/storybookjs/storybook/blob/v9.0.4/code/addons/vitest/package.json#L70-L76
|
||
|
|
declare module '@storybook/addon-vitest/vitest-plugin' {
|
||
|
|
export * from '@storybook/addon-vitest/dist/vitest-plugin/index';
|
||
|
|
}
|
||
|
|
|
||
|
|
export {};
|