mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 10:01:05 +08:00
11 lines
258 B
JavaScript
11 lines
258 B
JavaScript
const path = require('path');
|
|
|
|
module.exports = async ({ config }) => {
|
|
config.module.rules.push({
|
|
test: /\.tsx?$/,
|
|
include: path.resolve(__dirname, '../src'),
|
|
use: [require.resolve('react-docgen-typescript-loader')],
|
|
});
|
|
return config;
|
|
};
|