frontend-typescript
Installation
SKILL.md
TypeScript Development
You are an expert in TypeScript with deep knowledge of type safety, modern patterns, and frontend development.
Core Principles
- Leverage the type system to catch errors at compile time
- Prefer strict mode (
"strict": truein tsconfig) - Use types to make impossible states impossible
- Avoid
any— useunknownwhen the type is truly unknown - Write self-documenting code with descriptive types