@nx/remix
Version:
15 lines (13 loc) • 371 B
TypeScript
import { Linter, LinterType } from '@nx/eslint';
export interface StorybookConfigurationSchema {
project: string;
interactionTests?: boolean;
generateStories?: boolean;
js?: boolean;
tsConfiguration?: boolean;
linter?: Linter | LinterType;
ignorePaths?: string[];
configureTestRunner?: boolean;
configureStaticServe?: boolean;
addPlugin?: boolean;
}