Skip to content

chore(deps): bump @btravstack/tsconfig from 0.2.0 to 0.4.0 - #445

Merged
btravers merged 1 commit into
mainfrom
dependabot/npm_and_yarn/btravstack/tsconfig-0.4.0
Sep 15, 2026
Merged

btravers merged 1 commit into
mainfrom
dependabot/npm_and_yarn/btravstack/tsconfig-0.4.0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 14, 2026

Copy link
Copy Markdown
Contributor

⚠️ Dependabot is rebasing this PR ⚠️

Rebasing might not happen immediately, so don't worry if this takes some time.

Note: if you make any changes to this PR yourself, they will take precedence over the rebase.


Bumps @btravstack/tsconfig from 0.2.0 to 0.4.0.

Release notes

Sourced from @​btravstack/tsconfig's releases.

@​btravstack/tsconfig@​0.4.0

Minor Changes

  • 7dc497d: test-d.json: the preset for a type-level test project.

    Type-level tests assert with bindings nothing reads — type _x = Expect<Equal<A, B>> — so noUnusedLocals and noUnusedParameters must be off for that project and on everywhere else. Every workspace with a tsconfig.test-d.json was writing those two flags out by hand, along with the reason, or more often without it.

    {
      "extends": ["./tsconfig.json", "@btravstack/tsconfig/test-d.json"],
      "include": ["src/**/*.test-d.ts"]
    }

    The preset comes last in the array so its relaxations win over the strict config beneath.

    It carries no include, and cannot: TypeScript resolves a base config's include / exclude / files relative to the base file's own directory, so a shipped glob would point inside node_modules and match nothing. Measured — an include of src/**/*.test-d.ts in a base one directory up resolves to ../base/src/**/*.test-d.ts and reports TS18003. scripts/validate.mjs holds the shape as an allow-list$schema plus exactly those two compilerOptions — rather than forbidding the four keys a reader would reach for. The preset is layered last in a consumer's extends array, so anything it grows silently overrides the workspace's own config, and only naming what may appear catches a key nobody thought to forbid.

@​btravstack/tsconfig@​0.3.0

Minor Changes

  • d2cd3a9: app.json: base.json with declaration and declarationMap off, for a workspace that emits no declarations.

    Declaration emit is type-checked even under noEmit, so declaration: true costs an application the errors it buys a library. Measured on a DI composition root with one unmet dependency: two TS4023 lines about a library's internal ID / SERVICE brand symbols printed first, and the sentence naming the missing port printed third. An application that ships no .d.ts has nothing to gain from that check and pays for it on every mistake, internals-first.

    A library keeps base.json, where the check is the guarantee that its consumers can build.

Changelog

Sourced from @​btravstack/tsconfig's changelog.

0.4.0

Minor Changes

  • 7dc497d: test-d.json: the preset for a type-level test project.

    Type-level tests assert with bindings nothing reads — type _x = Expect<Equal<A, B>> — so noUnusedLocals and noUnusedParameters must be off for that project and on everywhere else. Every workspace with a tsconfig.test-d.json was writing those two flags out by hand, along with the reason, or more often without it.

    {
      "extends": ["./tsconfig.json", "@btravstack/tsconfig/test-d.json"],
      "include": ["src/**/*.test-d.ts"]
    }

    The preset comes last in the array so its relaxations win over the strict config beneath.

    It carries no include, and cannot: TypeScript resolves a base config's include / exclude / files relative to the base file's own directory, so a shipped glob would point inside node_modules and match nothing. Measured — an include of src/**/*.test-d.ts in a base one directory up resolves to ../base/src/**/*.test-d.ts and reports TS18003. scripts/validate.mjs holds the shape as an allow-list$schema plus exactly those two compilerOptions — rather than forbidding the four keys a reader would reach for. The preset is layered last in a consumer's extends array, so anything it grows silently overrides the workspace's own config, and only naming what may appear catches a key nobody thought to forbid.

0.3.0

Minor Changes

  • d2cd3a9: app.json: base.json with declaration and declarationMap off, for a workspace that emits no declarations.

    Declaration emit is type-checked even under noEmit, so declaration: true costs an application the errors it buys a library. Measured on a DI composition root with one unmet dependency: two TS4023 lines about a library's internal ID / SERVICE brand symbols printed first, and the sentence naming the missing port printed third. An application that ships no .d.ts has nothing to gain from that check and pays for it on every mistake, internals-first.

    A library keeps base.json, where the check is the guarantee that its consumers can build.

Commits
  • 4efa2bf chore: release packages
  • 88a34ba fix(tsconfig): hold test-d.json's shape with an allow-list
  • 7dc497d feat(tsconfig): test-d.json, the preset for a type-level test project
  • afcc6c5 chore: release packages
  • d2cd3a9 feat(tsconfig): app.json, for a workspace that emits no declarations
  • 1a7cd70 chore: update repo references after config -> tools rename
  • 38d4f05 feat(tsconfig): verbatimModuleSyntax + moduleDetection; drop types:node; bump...
  • See full diff in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​btravstack/tsconfig since your current version.


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Sep 14, 2026
@coderabbitai

coderabbitai Bot commented Sep 14, 2026

Copy link
Copy Markdown

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Advanced

Run ID: 526f9d0e-0059-4a86-883f-f3854dc93b48

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

Use the checkbox below for a quick retry:

  • 🔍 Trigger review

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

@dependabot @github

dependabot Bot commented on behalf of github Sep 15, 2026

Copy link
Copy Markdown
Contributor Author

Dependabot can't resolve your JavaScript dependency files. Because of this, Dependabot cannot update this pull request.

Bumps [@btravstack/tsconfig](https://github.com/btravstack/tools/tree/HEAD/packages/tsconfig) from 0.2.0 to 0.4.0.
- [Release notes](https://github.com/btravstack/tools/releases)
- [Changelog](https://github.com/btravstack/tools/blob/main/packages/tsconfig/CHANGELOG.md)
- [Commits](https://github.com/btravstack/tools/commits/@btravstack/tsconfig@0.4.0/packages/tsconfig)

---
updated-dependencies:
- dependency-name: "@btravstack/tsconfig"
  dependency-version: 0.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@btravers
btravers force-pushed the dependabot/npm_and_yarn/btravstack/tsconfig-0.4.0 branch from 0be5f69 to 0b8bb07 Compare September 15, 2026 09:11
@btravers
btravers merged commit ad5fad5 into main Sep 15, 2026
13 checks passed
@btravers
btravers deleted the dependabot/npm_and_yarn/btravstack/tsconfig-0.4.0 branch September 15, 2026 09:15
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant