Upgrade Biome and TypeScript dependencies with config adjustments#381
Open
jonaspm wants to merge 5 commits intobknd-io:release/0.21from
Open
Upgrade Biome and TypeScript dependencies with config adjustments#381jonaspm wants to merge 5 commits intobknd-io:release/0.21from
jonaspm wants to merge 5 commits intobknd-io:release/0.21from
Conversation
Add bun engine requirement to package.json. Add $schema to tsconfig.json and normalize compilerOptions (module, moduleResolution, target) to lowercase and set target to es2023.
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.
This pull request updates TypeScript and configuration files across the project to improve compatibility, maintainability, and developer experience. The main changes include upgrading all TypeScript dependencies to version 6.0.2, updating schema references for configuration files, and removing unnecessary
baseUrlsettings from varioustsconfig.jsonfiles.Dependency Upgrades:
typescriptdependencies to version6.0.2inpackage.jsonfiles for the main app, documentation, and all example projects. [1] [2] [3] [4] [5] [6] [7] [8]Configuration Improvements:
$schemaproperty to alltsconfig.jsonfiles to enable better IDE support and validation. [1] [2] [3] [4] [5] [6] [7] [8] [9] [10]$schemareference inbiome.jsonto the latest version for improved tooling support.Build and Path Settings Cleanup:
baseUrlproperty fromtsconfig.jsonfiles in the main app, documentation, and several example projects to simplify TypeScript path resolution and avoid potential conflicts. [1] [2] [3] [4]These changes ensure the project is up-to-date with the latest TypeScript features and best practices, while also streamlining configuration for easier maintenance.