This package provides shareable configurations for Biome and TypeScript for Freestyle.js projects.
pnpm add -D @freestylejs/configTo use the shareable Biome configuration, create a biome.json file in the root of your project and extend the configuration from this package:
{
"extends": ["@freestylejs/config/biome"]
}To use the shareable TypeScript configuration, create a tsconfig.json file in the root of your project and extend the configuration from this package:
{
"extends": "@freestylejs/config/tsconfig",
"include": ["src"]
}To use the recommended VSCode settings for Biome, create a vscode/settings.json file in the root of your project and add the following configuration:
To use the recommended scripts for Biome, create a scripts/scripts.json file in the root of your project and add the following configuration:
-
Commit all files
-
Update pkg version using
- patch:
pnpm version patch - minor:
pnpm version minor - major:
pnpm version major
-
Publish via
pnpm publish -
Done.