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 (16 loc) 512 B
import type { Linter, LinterType } from '@nx/eslint'; export interface CreatePackageSchema { name: string; project: string; directory: string; // options to create cli package, passed to js library generator skipFormat?: boolean; tags?: string; unitTestRunner?: 'jest' | 'vitest' | 'none'; linter?: Linter | LinterType; compiler?: 'swc' | 'tsc'; // options to create e2e project, passed to e2e project generator e2eProject?: string; useProjectJson?: boolean; addPlugin?: boolean; }