14 lines
286 B
TypeScript
14 lines
286 B
TypeScript
import { Linter } from '@nrwl/linter';
|
|
|
|
export interface Schema {
|
|
pluginName: string;
|
|
npmPackageName: string;
|
|
projectDirectory?: string;
|
|
pluginOutputPath?: string;
|
|
jestConfig?: string;
|
|
minimal?: boolean;
|
|
linter?: Linter;
|
|
skipFormat?: boolean;
|
|
rootProject?: boolean;
|
|
}
|