typescript
Installation
SKILL.md
TypeScript Guidelines
Core Rules
- Always use
typeinstead ofinterfacein TypeScript. - TypeScript 5.5+ automatically infers type predicates in
.filter()callbacks. Don't add manual type assertions:// Good - TypeScript infers the narrowed type automatically const filtered = items.filter((x) => x !== undefined);