@nx/next
Version:
29 lines (27 loc) • 737 B
TypeScript
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;
}