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

13 lines (12 loc) 453 B
import { UpgradeNativeConfigureSchema } from '../schema'; export interface NormalizedSchema { name: string; displayName: string; className: string; lowerCaseName: string; entryFile: string; entryFileIos: string; e2eTestRunner: 'cypress' | 'playwright' | 'detox' | 'none'; offsetFromRoot: string; } export declare function normalizeOptions(options: UpgradeNativeConfigureSchema, appProjectRoot: string): NormalizedSchema;