Llyle van Schalkwyk

Results 6 comments of Llyle van Schalkwyk

I am desperately wanting an extensively documented API, so all types and all properties have descriptions; but I also don't want dupe types generated, it causes a lot of noise...

If you use yarn you can workaround this issue by using yarn resolutions in your `package.json`. `swagger-typescript-api@^10.0.1` has a dependency of `typescript@^4.7.4` which resolves to `[email protected]` for me, which causes...

For those using NPM, which lacks package resolution overrides like yarn, you may "pin" the version of your own `typescript` dependency as @fabsenet said above. In my case I could...

> how correct use "overrides" for npm? I added this in my package.json but it's not work( @Misinin make sure to be using [email protected] or higher: https://docs.npmjs.com/cli/v8/configuring-npm/package-json#overrides ```JSON { "overrides":...

This change was required for me where we use `Uint8Array` for row versions, for better or for worse.