2023-01-13 18:22:17 +00:00

16 lines
402 B
TypeScript

import type { Linter } from '@nrwl/linter';
export interface StorybookConfigurationOptions {
configureCypress: boolean;
generateCypressSpecs: boolean;
generateStories: boolean;
linter: Linter;
name: string;
cypressDirectory?: string;
tsConfiguration?: boolean;
skipFormat?: boolean;
ignorePaths?: string[];
configureTestRunner?: boolean;
storybook7betaConfiguration?: boolean;
}