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

17 lines (16 loc) 613 B
// options form https://github.com/facebook/react-native/tree/main/packages/community-cli-plugin#bundle export interface ReactNativeBundleOptions { entryFile: string; platform: string; transfrom?: string; dev: boolean; // default is true minify?: boolean; // default is false, if dev is false, then minify will become true bundleOutput: string; maxWorkers: number; sourcemapOutput?: string; sourcemapSourcesRoot?: string; sourcemapUseAbsolutePath: boolean; // default is false assetDest?: string; resetCache: boolean; // default is false readGlobalCache?: boolean; // default is false }