@nx/react-native
Version:
17 lines (16 loc) • 613 B
TypeScript
// 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
}