@nx/express
Version:
22 lines (20 loc) • 566 B
TypeScript
import type { Linter, LinterType } from '@nx/eslint';
import type { UnitTestRunner } from '../../utils/test-runners';
export interface Schema {
directory: string;
name?: string;
skipFormat: boolean;
skipPackageJson: boolean;
unitTestRunner: UnitTestRunner;
tags?: string;
linter: Linter | LinterType;
frontendProject?: string;
swcJest?: boolean;
/** @deprecated use `swcJest` instead */
babelJest?: boolean;
js: boolean;
standaloneConfig?: boolean;
setParserOptionsProject?: boolean;
addPlugin?: boolean;
useProjectJson?: boolean;
}