UNPKG

@nx/expo

Version:

The Expo Plugin for Nx contains executors and generators for managing and developing an expo application within your workspace. For example, you can directly build for different target platforms as well as generate projects and publish your code.

25 lines (23 loc) 769 B
import type { Linter, LinterType } from '@nx/eslint'; export interface Schema { directory: string; name?: string; displayName?: string; style?: string; skipFormat: boolean; // default is false tags?: string; unitTestRunner: 'jest' | 'none'; // default is jest classComponent?: boolean; js: boolean; // default is false linter: Linter | LinterType; // default is eslint setParserOptionsProject?: boolean; // default is false e2eTestRunner: 'cypress' | 'playwright' | 'detox' | 'none'; // default is none standaloneConfig?: boolean; skipPackageJson?: boolean; // default is false // Internal options addPlugin?: boolean; nxCloudToken?: string; useTsSolution?: boolean; formatter?: 'prettier' | 'none'; useProjectJson?: boolean; }