EXE
WinGet
Biome
BiomeJS · 2.3.0 · arm64
Before deploying, verify this file with VirusTotal ↗
Silent Commands
Portable application — no installation required. Run the executable directly from any location.
File Identity
Filename
biome-win32-arm64.exe
Signature
Status
Upload installer to verify signature
Installer Selection
WinGet Package
Package ID
BiomeJS.Biome
Version
2.3.0
Description
Biome is a toolchain for web projects, aimed at providing functionalities to maintain them. It offers a formatter and linter, usable via CLI and LSP.
License
Apache-2.0
Homepage
https://biomejs.dev/
Installer URL
https://github.com/biomejs/biome/releases/download/@biomejs/biome@2.3.0/biome-win32-arm64.exe
Upgrade Behavior
install(Install over existing)
Release Notes
2.3.0
Minor Changes
- #7263 a3e3369 Thanks @arendjr! - Biome's resolver now supports baseUrl if specified in tsconfig.json.
Example
Given the following file structure:
tsconfig.json
{
"compilerOptions": {
"baseUrl": "./src"
}
}
src/foo.ts
export function foo() {}
In this scenario, import { foo } from "foo"; should work regardless of the
location of the file containing the import statement.
Fixes #6432.
- #7745 6fcbc07 Thanks @dyc3! - Added ignore option to noUnk…