chore(angular): remove super-fluent nullish assignment (#20382)

This commit is contained in:
Pascal Küsgen 2023-11-23 09:39:12 +01:00 committed by GitHub
parent 729bb5c398
commit c8e753ad8a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -322,7 +322,7 @@ function withSchemaDefaults(options: any): BrowserBuilderSchema {
options.outputHashing ??= 'none'; options.outputHashing ??= 'none';
options.progress ??= true; options.progress ??= true;
options.scripts ??= []; options.scripts ??= [];
options.main = options.main ??= options.browser; options.main ??= options.browser;
return options; return options;
} }