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.yamlmay exist in any project shape for pnpm v11+ settings such asallowBuildsandminimumReleaseAge. Check forpackagesfield to detect a workspace.