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 (15 loc) 418 B
/** * Same as the @nx/react library schema, except it removes keys: style, routing, globalCss */ export interface Schema { path: string; name?: string; skipTests?: boolean; export?: boolean; classComponent?: boolean; skipFormat?: boolean; /** * @deprecated Provide the full file path including the file extension in the `path` option. This option will be removed in Nx v21. */ js?: boolean; }