mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 14:01:16 +08:00
20 lines
424 B
TypeScript
20 lines
424 B
TypeScript
const path = require('path');
|
|
|
|
module.exports = (baseConfig: any) => {
|
|
baseConfig.module.rules.push({
|
|
test: [/\.stories\.tsx?$/, /index\.ts$/],
|
|
loaders: [
|
|
{
|
|
loader: require.resolve('@storybook/addon-storysource/loader'),
|
|
options: {
|
|
parser: 'typescript',
|
|
},
|
|
},
|
|
],
|
|
include: [path.resolve(__dirname, '../src')],
|
|
enforce: 'pre',
|
|
});
|
|
|
|
return baseConfig;
|
|
};
|