Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/nestjs/nest-cli
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilmysliwiec committed Jul 27, 2021
2 parents a6b735f + 831b040 commit 1c004a6
Show file tree
Hide file tree
Showing 3 changed files with 423 additions and 460 deletions.
7 changes: 6 additions & 1 deletion lib/configuration/configuration.ts
Expand Up @@ -20,11 +20,16 @@ interface CompilerOptions {
tsConfigPath?: string;
webpack?: boolean;
webpackConfigPath?: string;
plugins?: string[];
plugins?: string[] | PluginOptions[];
assets?: string[];
deleteOutDir?: boolean;
}

interface PluginOptions {
name: string;
options: Record<string, any>[];
}

interface GenerateOptions {
spec?: boolean | Record<string, boolean>;
}
Expand Down

0 comments on commit 1c004a6

Please sign in to comment.