* 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>
8 lines
172 B
TypeScript
8 lines
172 B
TypeScript
export interface StoriesGeneratorOptions {
|
|
name: string;
|
|
cypressProject?: string;
|
|
generateCypressSpecs?: boolean;
|
|
skipFormat?: boolean;
|
|
ignorePaths?: string[];
|
|
}
|