A shared configuration package for Biome and TypeScript. This package enforces strict coding standards to ensure uniform code style and prevent subtle bugs.
- Strict Biome and TypeScript settings.
- Scripts for linting and cleaning the project
To configure the package, use the following package.json or merge it with your current one:
Install the packages and run the setup script
pnpm i && pnpm run setupThis package includes a CLI for filtering and highlighting useful information from the logs of other tools.
Prepend your command with x
pnpm x index.ts
{ "name": "projectName", "type": "module", "scripts": { "dev": "x index.ts", "fix": "x fix", "test": "x test", "check": "x check", "setup": "x setup", "docker": "x docker" }, "devDependencies": { "@mp281x/shared-config": "latest" } }