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

18 lines (17 loc) 552 B
import { Tree } from '@nx/devkit'; import { WebConfigurationGeneratorSchema } from '../schema'; export interface NormalizedSchema extends WebConfigurationGeneratorSchema { projectRoot: string; fileName: string; className: string; } export declare function normalizeSchema(tree: Tree, schema: WebConfigurationGeneratorSchema): { projectRoot: string; offsetFromRoot: string; fileName: string; className: string; project: string; bundler: "vite" | "webpack"; skipFormat?: boolean; skipPackageJson?: boolean; };