loom-typescript
Installation
SKILL.md
TypeScript Language Expertise
Overview
This skill provides guidance for writing type-safe, maintainable, and production-quality TypeScript code. It covers TypeScript's advanced type system features, strict mode configuration, module systems, and common design patterns.
Key Concepts
Generics
// Basic generics
function identity<T>(value: T): T {
return value;
}