Benny Powers fbacf4ec9e style(web-components): refactor to TS
Split config functions into separate modules

Add type and language to docs.source
2021-06-24 09:32:20 +03:00

20 lines
504 B
TypeScript

import { extractArgTypes, extractComponentDescription } from './custom-elements';
import { sourceDecorator } from './sourceDecorator';
import { prepareForInline } from './prepareForInline';
import { SourceType } from '../../shared';
export const decorators = [sourceDecorator];
export const parameters = {
docs: {
extractArgTypes,
extractComponentDescription,
inlineStories: true,
prepareForInline,
source: {
type: SourceType.DYNAMIC,
language: 'html',
},
},
};