Skip to content

Commit

Permalink
fix(types) - update plugins configuration interface
Browse files Browse the repository at this point in the history
JSON Schema validation fails for nest-cli.json if an item in CompilerOptions.plugins[] uses the object notation.
  • Loading branch information
Rob Taylor committed Jul 20, 2021
1 parent 14a5cd8 commit 1ca85ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/configuration/configuration.ts
Expand Up @@ -27,7 +27,7 @@ interface CompilerOptions {

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

interface GenerateOptions {
Expand Down

0 comments on commit 1ca85ad

Please sign in to comment.