storybook/code/frameworks/angular/src/server/framework-preset-angular-docs.ts
2022-10-27 19:33:39 -04:00

9 lines
374 B
TypeScript

import path from 'path';
import { StorybookConfig } from '@storybook/types';
import { hasDocsOrControls } from '@storybook/docs-tools';
export const previewAnnotations: StorybookConfig['previewAnnotations'] = (entry = [], options) => {
if (!hasDocsOrControls(options)) return entry;
return [...entry, path.join(__dirname, '../../../dist/types/client/docs/config')];
};