Closed secobarbital closed 10 months ago
Ahh good catch, that's my bad. I didn't realize that was so recent a TS feature. I might be able to simply export *
with no breaking change.
Also, I'm curious, what's stopping you from using TypeScript 5+?
This should now be fixed in version 2.2.2. Let me know if it works for you!
Also, I'm curious, what's stopping you from using TypeScript 5+?
TypeORM :(
The version of TypeORM we are on is not supported by TS4.8 and above. Hope to find time to knock down those dominoes.
This should now be fixed in version 2.2.2. Let me know if it works for you!
Yes, it does! Thank you! And thank you for the library, too!
It looks like the library is using
export type * from ...
syntax, which is only supported in TypeScript 5 and above. The README has a badge indicating that it is compatible with TypeScript 4.5+. We are using TypeScript 4.7 and had to downgrade to schemata-ts@2.0.4 as a workaround but cannot use.extend
as a result.Would be nice to support 4.5+ as documented.