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.

21 lines (19 loc) 579 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'; tags?: string; unitTestRunner?: 'jest' | 'vitest' | 'none'; linter?: Linter | LinterType; setParserOptionsProject?: boolean; compiler?: 'swc' | 'tsc'; rootProject?: boolean; publishable?: boolean; useProjectJson?: boolean; addPlugin?: boolean; }