typescript-strict

Installation
SKILL.md

TypeScript Strict Patterns

Strict Configuration

// tsconfig.json essentials
{
  "compilerOptions": {
    "strict": true,
    "noUncheckedIndexedAccess": true,
    "exactOptionalPropertyTypes": true
  }
}

Interface vs Type

// Use interface for objects that may be extended
Related skills

More from canatufkansu/claude-skills

Installs
9
GitHub Stars
2
First Seen
Feb 7, 2026