Skip to content

forge-ts v0.19.4

Choose a tag to compare

@github-actions github-actions released this 22 Mar 05:38
· 54 commits to main since this release

Packages

  • @forge-ts/api@0.19.4
  • @forge-ts/cli@0.19.4
  • @forge-ts/core@0.19.4
  • @forge-ts/doctest@0.19.4
  • @forge-ts/enforcer@0.19.4
  • @forge-ts/gen@0.19.4

Patch Changes

  • cf8c3d0: fix: E020 false positives — interfaces/types no longer reported as containing any

    The walker's buildSignature() used getTypeOfSymbolAtLocation() which returns
    any for interface and type alias symbols. Changed to getDeclaredTypeOfSymbol()
    for interfaces, type aliases, and enums. Also added NoTruncation flag to prevent
    TypeScript from collapsing complex types to any.