UNPKG

@nx/next

Version:

The Next.js plugin for Nx contains executors and generators for managing Next.js applications and libraries within an Nx workspace. It provides: - Scaffolding for creating, building, serving, linting, and testing Next.js applications. - Integration wit

29 lines (27 loc) 737 B
import type { Linter, LinterType } from '@nx/eslint'; import type { SupportedStyles } from '@nx/react'; export interface Schema { directory: string; name?: string; style: SupportedStyles; skipTsConfig?: boolean; skipFormat?: boolean; tags?: string; routing?: boolean; appProject?: string; unitTestRunner: 'jest' | 'vitest' | 'none'; linter: Linter | LinterType; component?: boolean; publishable?: boolean; /** @deprecated Use bundler instead. */ buildable?: boolean; bundler?: 'none' | 'vite' | 'rollup'; importPath?: string; js?: boolean; globalCss?: boolean; strict?: boolean; setParserOptionsProject?: boolean; skipPackageJson?: boolean; addPlugin?: boolean; useProjectJson?: boolean; }