mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +08:00
Vue3: Fix babel / ts-loader both run against .ts files
This commit is contained in:
parent
05dfc5c4c9
commit
ac16a23e3d
@ -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,
|
||||
});
|
||||
|
@ -20,3 +20,8 @@ export const core: PresetProperty<'core', StorybookConfig> = async (config, opti
|
||||
},
|
||||
};
|
||||
};
|
||||
|
||||
export const typescript: PresetProperty<'typescript', StorybookConfig> = async (config) => ({
|
||||
...config,
|
||||
skipBabel: true,
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user