fix(DEF-1): fix tsconfig extending missing monorepo base and add biome linter config#7
Merged
Merged
Conversation
…e linter config - Fixed tsconfig.tests.json extending non-existent ../../tsconfig.base.json (monorepo leftover), now extends local ./tsconfig.json - Added biome.json configuration for consistent linting and formatting - Resolved all 44 biome lint errors across the codebase - Removed last-release-sha from release-please config (no longer needed) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
There was a problem hiding this comment.
Pull request overview
This PR updates project configuration to remove a no-longer-needed release-please override and align tooling configs (TypeScript + Biome) with the current repository structure and linting standards.
Changes:
- Remove
last-release-shaoverride fromrelease-please-config.jsonnow that a baseline tag exists. - Fix test TypeScript config inheritance to extend the local
tsconfig.jsoninstead of a non-existent monorepo base. - Add a Biome configuration file to standardize formatting/linting behavior.
Reviewed changes
Copilot reviewed 1 out of 1 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| release-please-config.json | Removes the explicit last-release-sha override for release-please manifest mode. |
| tsconfig.tests.json | Ensures test typechecking extends the local TypeScript configuration. |
| biome.json | Introduces shared Biome formatter/linter configuration for the repo. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
tsconfig.tests.jsonextending non-existent../../tsconfig.base.json(monorepo leftover), now extends local./tsconfig.jsonbiome.jsonconfiguration for consistent linting and formattinglast-release-shafrom release-please config (no longer needed after 0.4.0 tag exists)This
fix:commit will trigger release-please to create a0.4.1release PR.Test plan
npm run buildpassesnpm run lintpasses (0 errors)npm run test:typecheckpasses (0 errors)npm testpasses (174 tests)🤖 Generated with Claude Code