@nx/plugin
Version:
15 lines (13 loc) • 344 B
TypeScript
import type { Linter, LinterType } from '@nx/eslint';
export interface Schema {
pluginName: string;
npmPackageName: string;
projectDirectory?: string;
pluginOutputPath?: string;
jestConfig?: string;
linter?: Linter | LinterType;
skipFormat?: boolean;
rootProject?: boolean;
useProjectJson?: boolean;
addPlugin?: boolean;
}