What problem does it solve? TypeScript projects often suffer from slow compilation, exponential type-checking costs, runtime errors from unsafe types, and memory leaks. This Skill provides a curated, impact-prioritized rule set that guides automated refactoring and code generation toward faster builds and safer code. ## Core Features & Use Cases - Type System Performance: Rules to avoid deep generics, large unions, and complex mapped types that cause quadratic compile times. - Compiler Configuration: Guidance on tsconfig.json settings like incremental compilation, skipLibCheck, project references, and isolatedModules for 50-90% faster builds. - Async, Module & Memory Patterns: Covers Promise.all parallelization, barrel file avoidance, type-only imports, WeakMap usage, and event listener cleanup. - Use Case: When a build takes minutes due to misconfigured tsconfig or deeply nested generics, apply these rules to cut compile time and eliminate TS errors like TS2322 and TS2339. ## Quick Start Review my TypeScript project for performance issues and apply the relevant optimization rules to speed up compilation and fix type errors.