Vite: Fix framework typing issues with a hack

This commit is contained in:
Michael Shilman 2022-09-02 23:54:15 +08:00
parent 79427cdd0f
commit d1418038d3
3 changed files with 3 additions and 3 deletions

View File

@ -43,7 +43,7 @@ export const viteFinal: StorybookConfig['viteFinal'] = async (config, { presets
} else if (reactDocgen) {
const { reactDocgen } = await import('./plugins/react-docgen');
// Needs to run before the react plugin, so add to the front
plugins.unshift(reactDocgen());
plugins.unshift(reactDocgen() as any);
}
return config;

View File

@ -22,7 +22,7 @@ export function readPackageJson(): Record<string, any> | false {
export const viteFinal: StorybookConfig['viteFinal'] = async (config, { presets }) => {
const { plugins = [] } = config;
plugins.push(svelteDocgen(config));
plugins.push(svelteDocgen(config) as any);
return {
...config,

View File

@ -22,7 +22,7 @@ export function readPackageJson(): Record<string, any> | false {
export const viteFinal: StorybookConfig['viteFinal'] = async (config, { presets }) => {
const { plugins = [] } = config;
plugins.push(vueDocgen());
plugins.push(vueDocgen() as any);
const updated = {
...config,