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": true in tsconfig)
  • Use types to make impossible states impossible
  • Avoid any — use unknown when the type is truly unknown
  • Write self-documenting code with descriptive types

Type Fundamentals

Prefer Interfaces for Objects, Types for Unions/Intersections

// ✅ Good: Interface for object shapes
interface User {
Related skills
Installs
1
First Seen
12 days ago