mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2024-11-11 01:43:23 +01:00
21 lines
580 B
JavaScript
21 lines
580 B
JavaScript
|
module.exports = {
|
||
|
"stories": [
|
||
|
"../storybook/src/**/*.stories.mdx",
|
||
|
"../storybook/src/**/*.stories.@(js|jsx|ts|tsx)"
|
||
|
],
|
||
|
"addons": [
|
||
|
"@storybook/addon-links",
|
||
|
"@storybook/addon-essentials",
|
||
|
"@storybook/addon-interactions"
|
||
|
],
|
||
|
"framework": "@storybook/html",
|
||
|
typescript: {
|
||
|
check: false,
|
||
|
checkOptions: {},
|
||
|
reactDocgen: 'react-docgen-typescript',
|
||
|
reactDocgenTypescriptOptions: {
|
||
|
shouldExtractLiteralValuesFromEnum: true,
|
||
|
propFilter: (prop) => (prop.parent ? !/node_modules/.test(prop.parent.fileName) : true),
|
||
|
},
|
||
|
},
|
||
|
};
|