2019-03-16 13:23:21 +08:00

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;
};