mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 03:51:08 +08:00
17 lines
300 B
Plaintext
17 lines
300 B
Plaintext
```js
|
|
// .storybook/main.js
|
|
|
|
module.exports = {
|
|
stories: [],
|
|
addons: [],
|
|
typescript: {
|
|
reactDocgen: 'react-docgen-typescript',
|
|
reactDocgenTypescriptOptions: {
|
|
compilerOptions: {
|
|
allowSyntheticDefaultImports: false,
|
|
esModuleInterop: false,
|
|
},
|
|
}
|
|
}
|
|
};
|
|
``` |