mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 06:01:22 +08:00
19 lines
416 B
TypeScript
19 lines
416 B
TypeScript
const path = require('path');
|
|
|
|
module.exports = async ({ config }) => {
|
|
config.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 config;
|
|
};
|