status-web/packages/components/.storybook/main.ts

42 lines
899 B
TypeScript

import { dirname, join } from 'path'
import type { StorybookConfig } from '@storybook/react-vite'
import type {} from '@storybook/react'
declare module '@storybook/react' {
export interface Parameters {
backgrounds?: {
default: 'light' | 'dark'
}
}
}
const config: StorybookConfig = {
framework: getAbsolutePath('@storybook/react-vite'),
typescript: {
reactDocgen: false,
},
stories: [
// '../src/**/*.mdx',
'../src/**/*.stories.@(js|jsx|ts|tsx)',
],
addons: [
getAbsolutePath('@storybook/addon-links'),
getAbsolutePath('@storybook/addon-essentials'),
getAbsolutePath('@storybook/addon-interactions'),
getAbsolutePath('@storybook/addon-designs'),
],
// docs: {
// autodocs: 'tag',
// },
}
export default config
function getAbsolutePath(value: string): any {
return dirname(require.resolve(join(value, 'package.json')))
}