9f5584c37d
* very rough positions/pools data fetching and position list rendering * fix formatting * fix loading * position page routing, bug on add page Co-authored-by: ianlapham <ianlapham@gmail.com>
17 lines
560 B
TypeScript
17 lines
560 B
TypeScript
const { dirname, join, parse, resolve } = require('path')
|
|
const { existsSync } = require('fs')
|
|
|
|
module.exports = {
|
|
stories: ['../src/**/*.stories.@(ts|tsx)'],
|
|
addons: ['@storybook/addon-links', '@storybook/addon-essentials', '@storybook/preset-create-react-app'],
|
|
typescript: {
|
|
check: true,
|
|
checkOptions: {},
|
|
reactDocgen: 'react-docgen-typescript',
|
|
reactDocgenTypescriptOptions: {
|
|
shouldExtractLiteralValuesFromEnum: true,
|
|
propFilter: (prop) => (prop.parent ? !/node_modules/.test(prop.parent.fileName) : true),
|
|
},
|
|
},
|
|
}
|