@nx/react
Version:
14 lines (12 loc) • 334 B
TypeScript
import { Linter, LinterType } from '@nx/eslint';
export interface StorybookConfigureSchema {
project: string;
interactionTests?: boolean;
generateStories?: boolean;
js?: boolean;
tsConfiguration?: boolean;
linter?: Linter | LinterType;
ignorePaths?: string[];
configureStaticServe?: boolean;
addPlugin?: boolean;
}