Closed JSMonk closed 3 years ago
The problem was with recursive type alias like this:
type A = { ref: A } | Array<A>
This code became valid from TypeScript 3.7, but there was a problem inside the TypeAliasResolveLowering class with infinite processing of the code.
TypeAliasResolveLowering
The problem was with recursive type alias like this:
This code became valid from TypeScript 3.7, but there was a problem inside the
TypeAliasResolveLowering
class with infinite processing of the code.