As Angular 13 is not producing UMD-Bundles any longer
the command
ng g ngx-build-plus:externals --project MY_PROJECT
currently creates an invalid angular.json (pointing to the non-existing UMD-Bundles).
Here is umd bundles referred in angular.json
"scripts": [
"node_modules/rxjs/bundles/rxjs.umd.js",
"node_modules/@angular/core/bundles/core.umd.js",
"node_modules/@angular/common/bundles/common.umd.js",
"node_modules/@angular/common/bundles/common-http.umd.js",
"node_modules/@angular/compiler/bundles/compiler.umd.js",
"node_modules/@angular/elements/bundles/elements.umd.js",
"node_modules/@angular/platform-browser/bundles/platform-browser.umd.js",
"node_modules/@angular/platform-browser-dynamic/bundles/platform-browser-dynamic.umd.js"
]
What is the alternate files for these above files? Is there any other way to solve this issue ?