lang-typescript
Core Principles
- Prefer explicit types over
any. If you needany, useunknownand narrow it. - Favor
interfacefor object shapes,typefor unions, intersections, and mapped types. - Keep functions pure where possible. Isolate side effects at the edges.
- Angular: keep components thin. Business logic belongs in services, not templates or components.
Reference
| Resource | When to use |
|---|---|
./references/types.md | Type system patter |
[Description truncada. Veja o README completo no GitHub.]