2023-05-15 16:06:24 -04:00

21 lines
532 B
TypeScript

import { Linter } from '@nx/linter';
import { E2eTestRunner, UnitTestRunner } from '../../utils/test-runners';
import type { Styles } from '../utils/types';
export interface GeneratorOptions {
/**
* @deprecated This should be inferred with {@link getNpmScope}
*/
npmScope?: string;
defaultBase?: string;
unitTestRunner?: UnitTestRunner;
e2eTestRunner?: E2eTestRunner;
skipFormat?: boolean;
skipInstall?: boolean;
skipPostInstall?: boolean;
style?: Styles;
linter?: Linter;
skipPackageJson?: boolean;
}