Skip to content

forge-ts v0.23.1

Choose a tag to compare

@github-actions github-actions released this 03 Apr 19:29
· 13 commits to main since this release
d15cadd

Packages

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

Patch Changes

  • 9d88919 Thanks @kryptobaseddev! - Fix walker emitting compiled artifacts (.js, .d.ts, .map) into consumer src/ directories (GH-28)

    The walker's ts.createProgram() was using the consumer's raw tsconfig compiler options without
    overriding emit flags. If the consumer's tsconfig had declaration: true or sourceMap: true,
    TypeScript would silently emit compiled files alongside source files, causing tsup/esbuild to
    resolve stale .js files instead of .ts source — a silent build-breaking bug.

    Now forces noEmit: true, declaration: false, declarationMap: false, sourceMap: false, and
    emitDeclarationOnly: false since the walker is strictly read-only analysis.