UNPKG

@nestjs/cli

Version:

Nest - modern, fast, powerful node.js web framework (@cli)

20 lines (19 loc) 516 B
export interface NewCommandContext { name?: string; directory?: string; dryRun: boolean; skipGit: boolean; skipInstall: boolean; skipTests: boolean; packageManager?: string; language: string; collection: string; strict: boolean; format: boolean; /** * Whether to auto-configure `@nestjs/observe`. Left `undefined` when the * user passed neither `--observe` nor `--no-observe`, so the action knows it * still has to ask. */ observe?: boolean; }