mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 22:11:15 +08:00
19 lines
419 B
TypeScript
19 lines
419 B
TypeScript
import { resolve } from 'path';
|
|
|
|
module.exports = async ({ config }: { config: any }) => {
|
|
config.module.rules.push({
|
|
test: [/\.stories\.tsx?$/, /index\.ts$/],
|
|
loaders: [
|
|
{
|
|
loader: require.resolve('@storybook/source-loader'),
|
|
options: {
|
|
parser: 'typescript',
|
|
},
|
|
},
|
|
],
|
|
include: [resolve(__dirname, '../src')],
|
|
enforce: 'pre',
|
|
});
|
|
return config;
|
|
};
|