ngx-schema-form
ngx-schema-form copied to clipboard
Add support for Angular 14
Some peer dependencies are not working anymore with npm 8. As a temporary workaround, add this to your package.json
"ngx-schema-form": {
"@angular/common": "^14.0.0",
"@angular/core": "^14.0.0",
"@angular/forms": "^14.0.2",
"@angular/platform-browser": "^14.0.0"
}
Now all you need to add is:
"overrides": {
"ngx-schema-form": {
"rxjs": "^7.4.0"
}
},
The current RxJs version I have is 7.4, would it be possible to upgrade to 7.5 with it still working?