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

16 lines 555 B
import { Linter, LinterType } from '@nx/eslint'; import { GeneratorCallback, Tree } from '@nx/devkit'; interface NormalizedSchema { linter?: Linter | LinterType; projectName: string; projectRoot: string; setParserOptionsProject?: boolean; tsConfigPaths: string[]; skipPackageJson?: boolean; addPlugin?: boolean; buildable?: boolean; isTsSolutionSetup?: boolean; } export declare function addLinting(host: Tree, options: NormalizedSchema): Promise<GeneratorCallback>; export {}; //# sourceMappingURL=add-linting.d.ts.map