UNPKG

@nx/express

Version:

The Nx Plugin for Express contains executors and generators for allowing your workspace to create powerful Express Node applications and APIs.

22 lines (20 loc) 566 B
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; }