Katerina Skroumpelou 8bc99407aa
feat(storybook): ignore paths when generating stories (#11111)
* feat(storybook): ignore paths when generating stories

ISSUES CLOSED: #10211

* cleanup(storybook): add test for nested component ignore path

* feat(storybook): ensure ignore paths parsed correctly

Co-authored-by: Colum Ferry <cferry09@gmail.com>
2022-08-08 14:17:06 +01:00

8 lines
172 B
TypeScript

export interface StoriesGeneratorOptions {
name: string;
cypressProject?: string;
generateCypressSpecs?: boolean;
skipFormat?: boolean;
ignorePaths?: string[];
}