typescript
Installation
SKILL.md
TypeScript Development (Lean)
When to use
.ts,.tsx,tsconfig.json- React/Next.js code paths
- API clients/servers requiring strict typing
Defaults
- Keep
strict: true. - Prefer inferred types unless explicit types improve readability.
- Validate untrusted input with schemas (for example Zod).
- Use discriminated unions instead of boolean mode flags.