UNPKG

@stonx/elysia

Version:

[![npm version](https://img.shields.io/npm/v/@stonx/elysia.svg)](https://www.npmjs.com/package/@stonx/elysia) [![license: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![Nx compatibility](https://img.shie

25 lines (22 loc) 622 B
import type { Linter, LinterType } from '@nx/eslint'; export interface ApplicationGeneratorOptions { directory: string; name?: string; frontendProject?: string; linter?: Linter | LinterType; skipFormat?: boolean; skipPackageJson?: boolean; tags?: string; unitTestRunner?: 'jest' | 'none'; e2eTestRunner?: 'jest' | 'none'; setParserOptionsProject?: boolean; rootProject?: boolean; strict?: boolean; addPlugin?: boolean; useTsSolution?: boolean; useProjectJson?: boolean; } interface NormalizedOptions extends ApplicationGeneratorOptions { appProjectName: string; appProjectRoot: Path; }