typescript-strict

Installation
SKILL.md

TypeScript Strict Mode

Core Rules

  1. No any - ever. Use unknown if type is truly unknown
  2. No type assertions (as Type) without justification
  3. Prefer type over interface for data structures
  4. Reserve interface for behavior contracts only

Type vs Interface

type — for data structures

Installs
10
GitHub Stars
674
First Seen
Jan 20, 2026
typescript-strict — citypaul/dotfiles