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