typescript

Installation
SKILL.md

TypeScript

Configure modern TypeScript projects: structure, compiler, runtimes, package manager, package versions, linting, formatting, testing, builds, CI, and validation.

Project Shapes

Shape Structure Config style Detect
Workspace apps/ + packages/ tsconfig.base.json + per-package extends, root Biome config packages field in pnpm-workspace.yaml
Single app/action/CLI src/ in root Self-contained configs No workspace packages
Library/package src/ in root or packages/<name> Self-contained or extends root base package exports/types

pnpm-workspace.yaml may exist in any project shape for pnpm v11+ settings such as allowBuilds and minimumReleaseAge. Check for packages field to detect a workspace.

Rules

Installs
9
First Seen
Apr 15, 2026
typescript — mrsombre/typescript-skills