UNPKG

@nx/plugin

Version:

This plugin is used to create Nx plugins! It contains generators for generating common plugin features like generators, executors, migrations and more.

22 lines (20 loc) 611 B
import type { Linter, LinterType } from '@nx/eslint'; export interface Schema { directory: string; name?: string; importPath?: string; skipTsConfig?: boolean; // default is false skipFormat?: boolean; // default is false skipLintChecks?: boolean; // default is false e2eTestRunner?: 'jest' | 'none'; e2eProjectDirectory?: string; tags?: string; unitTestRunner?: 'jest' | 'vitest' | 'none'; linter?: Linter | LinterType; setParserOptionsProject?: boolean; compiler?: 'swc' | 'tsc'; rootProject?: boolean; publishable?: boolean; useProjectJson?: boolean; addPlugin?: boolean; }