- Which TS version?
- 5.x features. Decorators (stage 3), const type parameters, satisfies operator. Older patterns still work but the cheatsheet prefers modern syntax.
- Does it cover utility types?
- Yes — Partial, Required, Pick, Omit, Record, Parameters, ReturnType. The everyday ones plus when they apply.
- Generics?
- Thorough section — syntax, constraints, default parameters, and common patterns (useState-style generics).
- tsconfig options?
- The essential flags: strict, noImplicitAny, noUncheckedIndexedAccess, moduleResolution. With recommendations for library vs app projects.