16 lines
402 B
TypeScript
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;
|
|
}
|