Skip to content

@wellmade/tsconfig@0.1.2

Choose a tag to compare

@github-actions github-actions released this 22 May 08:14
· 22 commits to main since this release
be6b73b

Patch Changes

  • 440c305: Enable allowImportingTsExtensions in base.json. The base sets
    noEmit: true (type-only), so writing .ts extensions on relative
    imports is safe and matches our ESLint rule
    import/extensions: ['error', 'ignorePackages']. Without this flag,
    typecheck failed even though lint passed.

    Projects that override noEmit: false to actually emit JS need to set
    rewriteRelativeImportExtensions: true (TS 5.7+) themselves — that
    choice is project-specific.