Skip to content

Latest commit

 

History

History
49 lines (34 loc) · 954 Bytes

README.md

File metadata and controls

49 lines (34 loc) · 954 Bytes

@mp281x/shared-config

A shared configuration package for Biome and TypeScript. This package enforces strict coding standards to ensure uniform code style and prevent subtle bugs.

Features

  • Strict Biome and TypeScript settings.
  • Scripts for linting and cleaning the project

Installation

To configure the package, use the following package.json or merge it with your current one:

{
 "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" }
}

Install the packages and run the setup script

pnpm i && pnpm run setup

CLI

This package includes a CLI for filtering and highlighting useful information from the logs of other tools.

Usage and Example

Prepend your command with x

pnpm x index.ts