Angular Typescript client has a dependency resolution failure when generated as an npm package
Created by: andrew-matteson
java -jar openapi-generator-cli.jar generate -i pet-store.yaml -g typescript-angular --additional-properties=npmName='foo'
produces a package.json
with:
"tsickle": "^0.43.0",
"typescript": ">=4.2.3 <4.3.0",
I think this should be:
"tsickle": "^0.43.0",
"typescript": ">=4.3.0 <4.4.0",
This is a direct consequence of my PR: #10336 and was identified in that thread after merge.
I'll get a fix put together shortly.