mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 22:21:27 +08:00
40 lines
1.3 KiB
TypeScript
40 lines
1.3 KiB
TypeScript
import type { StorybookConfig } from '@storybook/core-common';
|
|
|
|
export const webpack: StorybookConfig['webpack'] = (config, options) => {
|
|
const babelrcOptions = options.features?.babelModeV7 ? null : { babelrc: false };
|
|
config.module.rules.push({
|
|
test: [
|
|
new RegExp(`src(.*)\\.js$`),
|
|
new RegExp(`packages(\\/|\\\\)*(\\/|\\\\)src(\\/|\\\\)(.*)\\.js$`),
|
|
new RegExp(`node_modules(\\/|\\\\)lit-html(.*)\\.js$`),
|
|
new RegExp(`node_modules(\\/|\\\\)lit-element(.*)\\.js$`),
|
|
new RegExp(`node_modules(\\/|\\\\)@open-wc(.*)\\.js$`),
|
|
new RegExp(`node_modules(\\/|\\\\)@polymer(.*)\\.js$`),
|
|
new RegExp(`node_modules(\\/|\\\\)@vaadin(.*)\\.js$`),
|
|
],
|
|
use: {
|
|
loader: require.resolve('babel-loader'),
|
|
options: {
|
|
plugins: [
|
|
require.resolve('@babel/plugin-syntax-dynamic-import'),
|
|
require.resolve('@babel/plugin-syntax-import-meta'),
|
|
// webpack does not support import.meta.url yet, so we rewrite them in babel
|
|
[require.resolve('babel-plugin-bundled-import-meta'), { importStyle: 'baseURI' }],
|
|
],
|
|
presets: [
|
|
[
|
|
require.resolve('@babel/preset-env'),
|
|
{
|
|
useBuiltIns: 'entry',
|
|
corejs: 3,
|
|
},
|
|
],
|
|
],
|
|
...babelrcOptions,
|
|
},
|
|
},
|
|
});
|
|
|
|
return config;
|
|
};
|