17 lines
432 B
TypeScript
17 lines
432 B
TypeScript
import type { Linter } from '@nrwl/linter';
|
|
|
|
export interface StorybookConfigurationOptions {
|
|
configureCypress: boolean;
|
|
configureStaticServe?: boolean;
|
|
generateCypressSpecs: boolean;
|
|
generateStories: boolean;
|
|
linter: Linter;
|
|
name: string;
|
|
cypressDirectory?: string;
|
|
tsConfiguration?: boolean;
|
|
skipFormat?: boolean;
|
|
ignorePaths?: string[];
|
|
configureTestRunner?: boolean;
|
|
storybook7Configuration?: boolean;
|
|
}
|