TypeScript Expert
Iron Law: Before diagnosing any TypeScript issue, READ the actual tsconfig.json, package.json, and relevant source files first. Do not diagnose from memory — verify with file:line evidence.
Note: This skill focuses on TypeScript infrastructure (monorepo, diagnostics, ESM/CJS, migrations). For implementation patterns, load typescript-advanced-types first. For NestJS patterns, load nestjs-api + nestjs-coding-standard first. For Angular patterns, load angular-spa first.
When to Use
Use this skill for project-level TypeScript decisions:
- Monorepo project references and composite builds
- Type checking performance issues (
tsc --extendedDiagnostics) - ESM/CJS interop and module resolution problems
- Strict mode migration strategies
.d.tsauthoring and declaration file management- Incremental compilation configuration
- Migrating from JavaScript to TypeScript
Do Not Use
- Do not use for Angular/NestJS framework-specific patterns — load
angular-spaornestjs-apiinstead - Do not use for implementation-level type patterns — load
typescript-advanced-typesinstead - Do not use for runtime debugging — load
systematic-debugginginstead
Analysis Workflow
Step 1: Analyze Project Setup
Use internal tools first (Read, Grep, Glob) for better performance. Shell commands are fallbacks.
# Core versions and configuration
npx tsc --version
node -v
# Detect tooling ecosystem (prefer parsing package.json)
node -e "const p=require('./package.json');console.log(Object.keys({...p.devDependencies,...p.dependencies}||{}).join('\n'))" 2>/dev/null | grep -E 'biome|eslint|prettier|vitest|jest|turborepo|nx' || echo "No tooling detected"
# Check for monorepo (fixed precedence)
(test -f pnpm-workspace.yaml || test -f lerna.json || test -f nx.json || test -f turbo.json) && echo "Monorepo detected"
After detection, adapt approach:
- Match import style (absolute vs relative)
- Respect existing baseUrl/paths configuration
- Prefer existing project scripts over raw tools
- In monorepos, consider project references before broad tsconfig changes
Step 2: Identify Problem Category
Identify the specific problem category and complexity level before proceeding.
Step 3: Apply Solution Strategy
Apply the appropriate solution strategy from the core capabilities below.
Step 4: Validate
# Fast fail approach (avoid long-lived processes)
npm run -s typecheck || npx tsc --noEmit
npm test -s || npx vitest run --reporter=basic --no-watch
# Only if needed and build affects outputs/config
npm run -s build
Safety note: Avoid watch/serve processes in validation. Use one-shot diagnostics only.
Core Capabilities
Branded Types
Create nominal types to prevent primitive obsession. Use for critical domain primitives, API boundaries, currency/units.
type Brand<K, T> = K & { __brand: T };
type UserId = Brand<string, 'UserId'>;
type OrderId = Brand<string, 'OrderId'>;
Advanced Conditional Types
Recursive type manipulation and template literal type magic. Use for library APIs, type-safe event systems, compile-time validation.
type DeepReadonly<T> = T extends (...args: any[]) => any
? T
: T extends object
? { readonly [K in keyof T]: DeepReadonly<T[K]> }
: T;
Watch for: Type instantiation depth errors (limit recursion to 10 levels).
Type Inference (satisfies)
// Use 'satisfies' for constraint validation (TS 5.0+)
const config = {
api: "https://api.example.com",
timeout: 5000
} satisfies Record<string, string | number>;
Performance Optimization
# Diagnose slow type checking
npx tsc --extendedDiagnostics --incremental false | grep -E "Check time|Files:|Lines:|Nodes:"
- Enable
skipLibCheck: truefor library type checking only - Use
incremental: truewith.tsbuildinfocache - Configure
include/excludeprecisely - For monorepos: Use project references with
composite: true
Error Pattern Resolution
- "The inferred type of X cannot be named": Export required type, use
ReturnType<typeof fn>, or break circular deps - "Excessive stack depth comparing types": Limit recursion, use
interfaceextends instead of type intersection - "Cannot find module": Check
moduleResolution, verifybaseUrl/paths, clear cache
ESM/CJS Interop
- Set
"type": "module"in package.json for ESM-first - Use
"moduleResolution": "bundler"for modern tools - Use dynamic imports for CJS:
const pkg = await import('cjs-package') - TypeScript paths only work at compile time — not runtime
Migration Strategies
JavaScript to TypeScript migration — incremental approach:
- Enable
allowJsandcheckJs - Rename files gradually (
.js→.ts) - Add types file by file
- Enable strict mode features one by one
Monorepo Project References
{
"references": [
{ "path": "./packages/core" },
{ "path": "./packages/ui" },
{ "path": "./apps/web" }
],
"compilerOptions": {
"composite": true,
"declaration": true,
"declarationMap": true
}
}
- Choose Turborepo for: simple structure, need speed, <20 packages
- Choose Nx for: complex dependencies, need visualization, plugins required
Tech Stack Applicability
| Stack | Applicable |
|---|---|
| Angular 21.x | Yes — but load angular-spa for framework patterns |
| NestJS 11.x | Yes — but load nestjs-api for framework patterns |
| MCP Builder TypeScript | Yes |
| Flutter | No |
| Java | No |
| Python | No |
Reference Files
| File | Purpose |
|---|---|
references/typescript-cheatsheet.md |
Quick reference for type basics, utility types, generics, type guards, and best practices |
references/utility-types.ts |
Production-ready utility type library (branded types, Result/Option types, deep utilities, JSON types) |
references/tsconfig-strict.json |
Strict TypeScript 5.x tsconfig template with ESM, performance, and path alias settings |
scripts/ts_diagnostic.py |
Python diagnostic script — analyzes tsconfig, tooling, monorepo setup, any-type usage, and type check performance |
Validation Commands
# Fast fail approach (avoid long-lived processes)
npm run -s typecheck || npx tsc --noEmit
npm test -s || npx vitest run --reporter=basic --no-watch
# Only if build affects outputs/config
npm run -s build
# Performance diagnostics
npx tsc --extendedDiagnostics --incremental false | grep -E "Check time|Files:|Lines:|Nodes:"
# Run project diagnostic script
python3 .claude/skills/typescript-expert/scripts/ts_diagnostic.py