UNPKG

@nx/storybook

Version:

The Nx Plugin for Storybook contains executors and generators for allowing your workspace to use the powerful Storybook integration testing & documenting capabilities.

21 lines (18 loc) 472 B
import { Linter, LinterType } from '@nx/eslint'; import { UiFramework } from '../../utils/models'; export interface StorybookConfigureSchema { project: string; uiFramework?: UiFramework; linter?: Linter | LinterType; js?: boolean; interactionTests?: boolean; tsConfiguration?: boolean; standaloneConfig?: boolean; configureStaticServe?: boolean; skipFormat?: boolean; addPlugin?: boolean; /** * @internal */ addExplicitTargets?: boolean; }