mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 10:01:05 +08:00
19 lines
351 B
JavaScript
19 lines
351 B
JavaScript
const path = require('path');
|
|
|
|
module.exports = [
|
|
{
|
|
name: '@storybook/preset-create-react-app',
|
|
options: {
|
|
tsDocgenLoaderOptions: {
|
|
tsconfigPath: path.resolve(__dirname, '../tsconfig.json'),
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: '@storybook/addon-docs/react/preset',
|
|
options: {
|
|
sourceLoaderOptions: null,
|
|
},
|
|
},
|
|
];
|