UNPKG

@nx/react-native

Version:

The Nx Plugin for React Native contains generators for managing React Native applications and libraries within an Nx workspace. It provides: -Integration with libraries such as Jest, Detox, and Storybook. -Scaffolding for creating buildable libraries th

14 lines (12 loc) 334 B
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; }