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

24 lines (22 loc) 606 B
import type { Linter, LinterType } from '@nx/eslint'; /** * Same as the @nx/react library schema, except it removes keys: style, component, routing, appProject */ export interface Schema { directory: string; name?: string; skipTsConfig: boolean; skipFormat: boolean; tags?: string; unitTestRunner: 'jest' | 'none'; linter: Linter | LinterType; publishable?: boolean; buildable?: boolean; importPath?: string; js?: boolean; strict?: boolean; setParserOptionsProject?: boolean; skipPackageJson?: boolean; //default is false addPlugin?: boolean; useProjectJson?: boolean; }