TypeScript Performance Optimization Systematic performance optimization for JavaScript/TypeScript codebases. Combines audit workflow with expert-level optimization patterns for runtime performance. NEVER Do When Optimizing Performance Note: For general best practices (type safety with / , avoiding , not mutating parameters), use the skill instead. This section focuses exclusively on performance-specific anti-patterns. - NEVER assume code is cold path - Utility functions, formatters, parsers, and validators appear simple but are frequently called in loops, rendering pipelines, or real-time sys…