-
-
Notifications
You must be signed in to change notification settings - Fork 7.4k
Closed
Labels
Description
Is your feature request related to a problem? Please describe.
Some dependencies in the generated package by typescript-angular generator are not compatible with the dependencies of Angular 17.
Describe the solution you'd like
When angular version is set to 17 or higher, use the following dependencies:
"rxjs": "~7.8.0",
"typescript": ">=4.9.3 <5.3.0",
"zone.js": "~0.14.2"
Describe alternatives you've considered
For the moment I override the dependencies in the package.json of my application in a ovverides section such as:
"overrides": {
"@myorg/my-api-client": {
"@angular/common": "^17.0.5",
"@angular/compiler": "^17.0.5",
"@angular/compiler-cli": "^17.0.5",
"@angular/core": "^17.0.5",
"@angular/platform-browser": "^17.0.5",
"rxjs": "^7.8.0",
"typescript": ">=4.9.3 <5.3.0",
"zone.js": "^0.14.2"
},
Reactions are currently unavailable