Skip to content

Latest commit

 

History

History
58 lines (32 loc) · 1.29 KB

File metadata and controls

58 lines (32 loc) · 1.29 KB

Tooling

Development tools and utilities used in this repository.

  • package manager: pnpm
  • monorepo: lerna
  • language: typescript
  • formatter: biome
  • linter: biome
  • build system: tsup

pnpm

Fast, disk space efficient package manager with built-in workspace support for managing dependencies across the monorepo.

Links

lerna

Lerna is a tool for managing JavaScript projects with multiple packages.

Links

nx

High-performance build system optimized for JavaScript and TypeScript monorepos with smart caching and parallel execution. Lerna and nx are integrated as nx acquired lerna.

Links

Biome

All-in-one toolchain for web projects, combining formatter and linter functionality (replaces ESLint + Prettier).

Links

TypeScript

Strongly typed programming language that builds on JavaScript, providing static type checking at compile time.

Links

tsup

Builds and bundles TypeScript code into JavaScript.

Links