Vue3: Fix babel / ts-loader both run against .ts files

This commit is contained in:
Michael Shilman 2022-09-14 16:59:33 +08:00
parent 05dfc5c4c9
commit ac16a23e3d
2 changed files with 9 additions and 8 deletions

View File

@ -21,11 +21,7 @@ export const core: PresetProperty<'core', StorybookConfig> = async (config, opti
};
};
export const typescript = async (
config: StorybookConfig['typescript']
): Promise<StorybookConfig['typescript']> => {
return {
...config,
skipBabel: true,
};
};
export const typescript: PresetProperty<'typescript', StorybookConfig> = async (config) => ({
...config,
skipBabel: true,
});

View File

@ -20,3 +20,8 @@ export const core: PresetProperty<'core', StorybookConfig> = async (config, opti
},
};
};
export const typescript: PresetProperty<'typescript', StorybookConfig> = async (config) => ({
...config,
skipBabel: true,
});