TypeScript Operations
Comprehensive TypeScript skill covering the type system, generics, and production patterns.
Ecosystem facts verified as of 2026-08-08 (TypeScript 7, Zod 4, Valibot 1).
Staleness check: python scripts/check-typescript-facts.py --offline asserts the
catalogued version-bearing facts (TypeScript major, zod, valibot) are still named in the
prose and the dated currency note above is present; run --live to confirm each package's
npm major still matches the documented major. Catalog: assets/typescript-facts.json.
Type Narrowing Decision Tree
How to narrow a type?
│
├─ Primitive type check
│ └─ typeof: typeof x === "string"
│
├─ Instance check
│ └─ instanceof: x instanceof Date
│
├─ Property existence
│ └─ in: "email" in user
│
├─ Discriminated union
│ └─ switch on literal field: switch (event.type)
│
├─ Null/undefined check
│ └─ Truthiness: if (x) or if (x != null)
│
├─ Custom logic
│ └─ Type predicate: function isUser(x: unknown): x is User
│
└─ Assertion (you know better than TS)
└─ as: value as string (escape hatch, avoid when possible)
Type Guard Example
interface Dog { bark(): void; breed: string }
interface Cat { meow(): void; color: string }
function isDog(pet: Dog | Cat): pet is Dog {
return "bark" in pet;
}
function handlePet(pet: Dog | Cat) {
if (isDog(pet)) {
pet.bark(); // TS knows it's Dog here
} else {
pet.meow(); // TS knows it's Cat here
}
}
Discriminated Unions
type Result<T> =
| { status: "success"; data: T }
| { status: "error"; error: string }
| { status: "loading" };
function handle<T>(result: Result<T>) {
switch (result.status) {
case "success": return result.data; // data is available
case "error": throw new Error(result.error); // error is available
case "loading": return null;
}
// Exhaustiveness check: result is `never` here
const _exhaustive: never = result;
}
Utility Types Cheat Sheet
| Utility |
What It Does |
Example |
Partial<T> |
All props optional |
Partial<User> for update payloads |
Required<T> |
All props required |
Required<Config> for validated config |
Readonly<T> |
All props readonly |
Readonly<State> for immutable state |
Pick<T, K> |
Select specific props |
Pick<User, "id" | "name"> |
Omit<T, K> |
Remove specific props |
Omit<User, "password"> |
Record<K, V> |
Object with typed keys/values |
Record<string, number> |
Exclude<U, E> |
Remove types from union |
Exclude<Status, "deleted"> |
Extract<U, E> |
Keep types from union |
Extract<Event, { type: "click" }> |
NonNullable<T> |
Remove null/undefined |
NonNullable<string | null> |
ReturnType<F> |
Function return type |
ReturnType<typeof fetchUser> |
Parameters<F> |
Function params as tuple |
Parameters<typeof createUser> |
Awaited<T> |
Unwrap Promise type |
Awaited<Promise<User>> = User |
Generic Patterns
Constrained Generics
// Basic constraint
function getProperty<T, K extends keyof T>(obj: T, key: K): T[K] {
return obj[key];
}
// Multiple constraints
function merge<T extends object, U extends object>(a: T, b: U): T & U {
return { ...a, ...b };
}
// Default generic type
type ApiResponse<T = unknown> = {
data: T;
status: number;
};
Conditional Types
// Basic conditional
type IsString<T> = T extends string ? true : false;
// infer keyword - extract inner type
type UnwrapPromise<T> = T extends Promise<infer U> ? U : T;
type UnwrapArray<T> = T extends (infer U)[] ? U : T;
// Distributive conditional (distributes over union)
type ToArray<T> = T extends any ? T[] : never;
// ToArray<string | number> = string[] | number[]
// Prevent distribution with wrapping
type ToArrayNonDist<T> = [T] extends [any] ? T[] : never;
// ToArrayNonDist<string | number> = (string | number)[]
Mapped Types
// Make all properties optional and nullable
type Nullable<T> = { [K in keyof T]: T[K] | null };
// Add prefix to keys
type Prefixed<T, P extends string> = {
[K in keyof T as `${P}${Capitalize<string & K>}`]: T[K];
};
// Prefixed<{ name: string }, "get"> = { getName: string }
// Filter keys by value type
type StringKeys<T> = {
[K in keyof T as T[K] extends string ? K : never]: T[K];
};
Deep dive: Load ./references/generics-patterns.md for advanced type-level programming, recursive types, template literal types.
Modern Language Features (TypeScript 5.x → 6.0)
| Feature |
Since |
What It Gives You |
satisfies operator |
4.9 |
Check a value against a type without widening it |
| Standard (TC39) decorators |
5.0 |
@decorator on classes/methods without experimentalDecorators |
const type parameters |
5.0 |
function f<const T>(x: T) infers literal types without as const at call sites |
using declarations |
5.2 |
Explicit resource management (Symbol.dispose), auto-cleanup at scope exit |
| Inferred type predicates |
5.5 |
arr.filter(x => x !== null) narrows without a hand-written x is T guard |
verbatimModuleSyntax |
5.0 |
Enforces import type for type-only imports — replaces importsNotUsedAsValues |
// const type parameters (5.0) - literal inference without as const
function routes<const T extends readonly string[]>(paths: T): T { return paths; }
const r = routes(["/home", "/about"]); // readonly ["/home", "/about"], not string[]
// using declarations (5.2) - deterministic cleanup
function readConfig() {
using file = openFile("config.json"); // file[Symbol.dispose]() runs at scope exit
return parse(file.contents);
}
// Inferred type predicates (5.5) - no manual guard needed
const names = ["a", null, "b"].filter(x => x !== null); // string[], not (string | null)[]
TypeScript 6.0 (The Bridge Release)
TS 6.0 is the last release on the JavaScript-based compiler — it exists to bridge to the
native (Go) compiler in TS 7, so its headline is stricter, modernised defaults:
strict: true is the default — a tsconfig that never set it now gets full strict checks
- Defaults modernised:
module: esnext, target: es2025; es2025 lib ships types for Temporal, Map.getOrInsert, RegExp.escape
- Legacy options removed:
moduleResolution: classic; module: amd/umd/system/none; minimum target is now ES2015 (es5 deprecated)
- Interop always on:
esModuleInterop / allowSyntheticDefaultImports can no longer be disabled
- New
--stableTypeOrdering flag eases 6.0 → 7.0 migration diffing
TypeScript 7 (Current Major — Native Compiler)
TS 7 is the Go-native rewrite (formerly tsgo), stable on npm since 2026-07-08.
Same checking semantics, ~8–16× faster typechecks — but the package ships only a
bin/tsc shim, no JavaScript compiler API: require('typescript') throws
MODULE_NOT_FOUND on 7.0.x (the API returns in 7.1+). Consequences that gate
adoption:
- Repo tooling using the TS programmatic API (
ts.createSourceFile, custom lint
scripts, codemods, typescript-eslint) must go AST-free, switch parser, or pin an alias
- Tools typechecking embedded languages (vue-tsc, svelte-check, Astro, MDX) are
pinned to TS 6 until they port to the 7.1+ API — a real stack-selection input
- A tsconfig already on TS 6 defaults adopts directly (the 6.0 bridge is skippable);
baseUrl is a hard error (TS5102)
- Running a
typescript5 fallback alias alongside 7 makes bare npx tsc ambiguous —
scripts must use explicit compiler paths during the soak
Deep dive: Load ./references/ts7-native-compiler.md for the no-JS-API workarounds,
dual-install bin ambiguity, ecosystem lockout table, measured adoption benchmarks (12.1×),
and the go/no-go checklist.
tsconfig Quick Reference
{
"compilerOptions": {
// Strict mode (default in TS 6; state it explicitly anyway)
"strict": true, // Enables all strict checks
"noUncheckedIndexedAccess": true, // arr[0] is T | undefined
// Module system (TS 6 defaults to module: esnext; interop is always on)
"module": "esnext", // or "nodenext" for Node
"moduleResolution": "bundler", // or "nodenext"
// Output (TS 6 defaults target to es2025; min supported is es2015)
"target": "es2022",
"outDir": "dist",
"declaration": true, // Generate .d.ts
"sourceMap": true,
// Paths — tsconfig-relative; don't add baseUrl (TS 7 hard-errors on it, TS5102)
"paths": { "@/*": ["./src/*"] },
// Strictness extras
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"forceConsistentCasingInFileNames": true
},
"include": ["src"],
"exclude": ["node_modules", "dist"]
}
Deep dive: Load ./references/config-strict.md for strict mode migration, monorepo config, project references.
Common Gotchas
| Gotcha |
Why |
Fix |
any leaks |
any disables type checking for everything it touches |
Use unknown + narrowing instead |
as assertions hide bugs |
Assertion doesn't check at runtime |
Use type guards or validation (Zod) |
enum quirks |
Numeric enums are not type-safe, reverse mappings confuse |
Use as const objects or string literal unions |
object vs Record vs {} |
{} matches any non-null value, object is non-primitive |
Use Record<string, unknown> for "any object" |
| Array index access |
arr[999] returns T not T | undefined by default |
Enable noUncheckedIndexedAccess |
| Optional vs undefined |
{ x?: string } allows missing key, { x: string | undefined } requires key |
Be explicit about which you mean |
! non-null assertion |
Silences null checks, no runtime effect |
Use ?? defaultValue or proper null check |
| Structural typing surprise |
{ a: 1, b: 2 } assignable to { a: number } |
Use branded types for nominal typing |
Branded / Nominal Types
// Prevent accidentally mixing types that are structurally identical
type UserId = string & { readonly __brand: "UserId" };
type OrderId = string & { readonly __brand: "OrderId" };
function createUserId(id: string): UserId { return id as UserId; }
function getUser(id: UserId) { /* ... */ }
const userId = createUserId("u-123");
const orderId = "o-456" as OrderId;
getUser(userId); // OK
getUser(orderId); // Error: OrderId not assignable to UserId
Runtime Validation (Zod 4)
import { z } from "zod";
// Define schema (Zod 4: string formats are top-level - z.email(), not z.string().email())
const UserSchema = z.object({
id: z.number(),
name: z.string().min(1),
email: z.email(),
role: z.enum(["admin", "user"]),
settings: z.object({
theme: z.enum(["light", "dark"]).default("light"),
}).optional(),
});
// Infer type from schema
type User = z.infer<typeof UserSchema>;
// Validate
const user = UserSchema.parse(untrustedData); // throws on invalid
const result = UserSchema.safeParse(untrustedData); // returns { success, data/error }
Zod 4 changes to know (if you learned Zod 3): string formats moved to the top level
(z.email(), z.uuid(), z.url() — the z.string().email() method form is deprecated);
error customisation unified under a single error param (invalid_type_error /
required_error dropped); much faster parsing and a tree-shakeable zod/mini entry point.
Reference Files
Load these for deep-dive topics. Each is self-contained.
| Reference |
When to Load |
./references/type-system.md |
Advanced types, branded types, type-level programming, satisfies operator |
./references/generics-patterns.md |
Generic constraints, conditional types, mapped types, template literals, recursive types |
./references/utility-types.md |
All built-in utility types with examples, custom utility types |
./references/config-strict.md |
tsconfig deep dive, strict mode migration, project references, monorepo setup |
./references/ts7-native-compiler.md |
Adopting the TS 7 native (Go) compiler: no JS API, bin ambiguity, ecosystem lockout, benchmarked go/no-go |
./references/ecosystem.md |
Zod/Valibot, type-safe API clients, ORM types, testing with Vitest |
See Also
testing-ops - Cross-language testing strategies
ci-cd-ops - TypeScript CI pipelines, type checking in CI
1---2name: typescript-ops3description: TypeScript type system, generics, utility types, strict mode, and ecosystem patterns. Use for: typescript, ts, type, generic, utility type, Partial, Pick, Omit, Record, Exclude, Extract, ReturnType, Parameters, keyof, typeof, infer, mapped type, conditional type, template literal type, discriminated union, type guard, type assertion, type narrowing, tsconfig, strict mode, declaration file, zod, valibot, typescript 7, tsgo, native compiler.4license: MIT5---67# TypeScript Operations89Comprehensive TypeScript skill covering the type system, generics, and production patterns.1011> Ecosystem facts verified as of 2026-08-08 (TypeScript 7, Zod 4, Valibot 1).1213**Staleness check:** `python scripts/check-typescript-facts.py --offline` asserts the14catalogued version-bearing facts (TypeScript major, zod, valibot) are still named in the15prose and the dated currency note above is present; run `--live` to confirm each package's16npm major still matches the documented major. Catalog: `assets/typescript-facts.json`.1718## Type Narrowing Decision Tree1920```21How to narrow a type?22│23├─ Primitive type check24│ └─ typeof: typeof x === "string"25│26├─ Instance check27│ └─ instanceof: x instanceof Date28│29├─ Property existence30│ └─ in: "email" in user31│32├─ Discriminated union33│ └─ switch on literal field: switch (event.type)34│35├─ Null/undefined check36│ └─ Truthiness: if (x) or if (x != null)37│38├─ Custom logic39│ └─ Type predicate: function isUser(x: unknown): x is User40│41└─ Assertion (you know better than TS)42 └─ as: value as string (escape hatch, avoid when possible)43```4445### Type Guard Example4647```typescript48interface Dog { bark(): void; breed: string }49interface Cat { meow(): void; color: string }5051function isDog(pet: Dog | Cat): pet is Dog {52 return "bark" in pet;53}5455function handlePet(pet: Dog | Cat) {56 if (isDog(pet)) {57 pet.bark(); // TS knows it's Dog here58 } else {59 pet.meow(); // TS knows it's Cat here60 }61}62```6364### Discriminated Unions6566```typescript67type Result<T> =68 | { status: "success"; data: T }69 | { status: "error"; error: string }70 | { status: "loading" };7172function handle<T>(result: Result<T>) {73 switch (result.status) {74 case "success": return result.data; // data is available75 case "error": throw new Error(result.error); // error is available76 case "loading": return null;77 }78 // Exhaustiveness check: result is `never` here79 const _exhaustive: never = result;80}81```8283## Utility Types Cheat Sheet8485| Utility | What It Does | Example |86|---------|-------------|---------|87| `Partial<T>` | All props optional | `Partial<User>` for update payloads |88| `Required<T>` | All props required | `Required<Config>` for validated config |89| `Readonly<T>` | All props readonly | `Readonly<State>` for immutable state |90| `Pick<T, K>` | Select specific props | `Pick<User, "id" \| "name">` |91| `Omit<T, K>` | Remove specific props | `Omit<User, "password">` |92| `Record<K, V>` | Object with typed keys/values | `Record<string, number>` |93| `Exclude<U, E>` | Remove types from union | `Exclude<Status, "deleted">` |94| `Extract<U, E>` | Keep types from union | `Extract<Event, { type: "click" }>` |95| `NonNullable<T>` | Remove null/undefined | `NonNullable<string \| null>` |96| `ReturnType<F>` | Function return type | `ReturnType<typeof fetchUser>` |97| `Parameters<F>` | Function params as tuple | `Parameters<typeof createUser>` |98| `Awaited<T>` | Unwrap Promise type | `Awaited<Promise<User>>` = `User` |99100## Generic Patterns101102### Constrained Generics103104```typescript105// Basic constraint106function getProperty<T, K extends keyof T>(obj: T, key: K): T[K] {107 return obj[key];108}109110// Multiple constraints111function merge<T extends object, U extends object>(a: T, b: U): T & U {112 return { ...a, ...b };113}114115// Default generic type116type ApiResponse<T = unknown> = {117 data: T;118 status: number;119};120```121122### Conditional Types123124```typescript125// Basic conditional126type IsString<T> = T extends string ? true : false;127128// infer keyword - extract inner type129type UnwrapPromise<T> = T extends Promise<infer U> ? U : T;130type UnwrapArray<T> = T extends (infer U)[] ? U : T;131132// Distributive conditional (distributes over union)133type ToArray<T> = T extends any ? T[] : never;134// ToArray<string | number> = string[] | number[]135136// Prevent distribution with wrapping137type ToArrayNonDist<T> = [T] extends [any] ? T[] : never;138// ToArrayNonDist<string | number> = (string | number)[]139```140141### Mapped Types142143```typescript144// Make all properties optional and nullable145type Nullable<T> = { [K in keyof T]: T[K] | null };146147// Add prefix to keys148type Prefixed<T, P extends string> = {149 [K in keyof T as `${P}${Capitalize<string & K>}`]: T[K];150};151// Prefixed<{ name: string }, "get"> = { getName: string }152153// Filter keys by value type154type StringKeys<T> = {155 [K in keyof T as T[K] extends string ? K : never]: T[K];156};157```158159**Deep dive**: Load `./references/generics-patterns.md` for advanced type-level programming, recursive types, template literal types.160161## Modern Language Features (TypeScript 5.x → 6.0)162163| Feature | Since | What It Gives You |164|---------|-------|-------------------|165| `satisfies` operator | 4.9 | Check a value against a type without widening it |166| Standard (TC39) decorators | 5.0 | `@decorator` on classes/methods without `experimentalDecorators` |167| `const` type parameters | 5.0 | `function f<const T>(x: T)` infers literal types without `as const` at call sites |168| `using` declarations | 5.2 | Explicit resource management (`Symbol.dispose`), auto-cleanup at scope exit |169| Inferred type predicates | 5.5 | `arr.filter(x => x !== null)` narrows without a hand-written `x is T` guard |170| `verbatimModuleSyntax` | 5.0 | Enforces `import type` for type-only imports — replaces `importsNotUsedAsValues` |171172```typescript173// const type parameters (5.0) - literal inference without as const174function routes<const T extends readonly string[]>(paths: T): T { return paths; }175const r = routes(["/home", "/about"]); // readonly ["/home", "/about"], not string[]176177// using declarations (5.2) - deterministic cleanup178function readConfig() {179 using file = openFile("config.json"); // file[Symbol.dispose]() runs at scope exit180 return parse(file.contents);181}182183// Inferred type predicates (5.5) - no manual guard needed184const names = ["a", null, "b"].filter(x => x !== null); // string[], not (string | null)[]185```186187### TypeScript 6.0 (The Bridge Release)188189TS 6.0 is the last release on the JavaScript-based compiler — it exists to bridge to the190native (Go) compiler in TS 7, so its headline is stricter, modernised defaults:191192- **`strict: true` is the default** — a tsconfig that never set it now gets full strict checks193- **Defaults modernised**: `module: esnext`, `target: es2025`; `es2025` lib ships types for Temporal, `Map.getOrInsert`, `RegExp.escape`194- **Legacy options removed**: `moduleResolution: classic`; `module: amd/umd/system/none`; minimum `target` is now ES2015 (`es5` deprecated)195- **Interop always on**: `esModuleInterop` / `allowSyntheticDefaultImports` can no longer be disabled196- New `--stableTypeOrdering` flag eases 6.0 → 7.0 migration diffing197198### TypeScript 7 (Current Major — Native Compiler)199200TS 7 is the Go-native rewrite (formerly `tsgo`), stable on npm since 2026-07-08.201Same checking semantics, ~8–16× faster typechecks — but the package ships **only a202`bin/tsc` shim, no JavaScript compiler API**: `require('typescript')` throws203`MODULE_NOT_FOUND` on 7.0.x (the API returns in 7.1+). Consequences that gate204adoption:205206- Repo tooling using the TS programmatic API (`ts.createSourceFile`, custom lint207 scripts, codemods, typescript-eslint) must go AST-free, switch parser, or pin an alias208- Tools typechecking embedded languages (vue-tsc, svelte-check, Astro, MDX) are209 pinned to TS 6 until they port to the 7.1+ API — a real stack-selection input210- A tsconfig already on TS 6 defaults adopts directly (the 6.0 bridge is skippable);211 `baseUrl` is a hard error (TS5102)212- Running a `typescript5` fallback alias alongside 7 makes bare `npx tsc` ambiguous —213 scripts must use explicit compiler paths during the soak214215**Deep dive**: Load `./references/ts7-native-compiler.md` for the no-JS-API workarounds,216dual-install bin ambiguity, ecosystem lockout table, measured adoption benchmarks (12.1×),217and the go/no-go checklist.218219## tsconfig Quick Reference220221```jsonc222{223 "compilerOptions": {224 // Strict mode (default in TS 6; state it explicitly anyway)225 "strict": true, // Enables all strict checks226 "noUncheckedIndexedAccess": true, // arr[0] is T | undefined227228 // Module system (TS 6 defaults to module: esnext; interop is always on)229 "module": "esnext", // or "nodenext" for Node230 "moduleResolution": "bundler", // or "nodenext"231232 // Output (TS 6 defaults target to es2025; min supported is es2015)233 "target": "es2022",234 "outDir": "dist",235 "declaration": true, // Generate .d.ts236 "sourceMap": true,237238 // Paths — tsconfig-relative; don't add baseUrl (TS 7 hard-errors on it, TS5102)239 "paths": { "@/*": ["./src/*"] },240241 // Strictness extras242 "noUnusedLocals": true,243 "noUnusedParameters": true,244 "noFallthroughCasesInSwitch": true,245 "forceConsistentCasingInFileNames": true246 },247 "include": ["src"],248 "exclude": ["node_modules", "dist"]249}250```251252**Deep dive**: Load `./references/config-strict.md` for strict mode migration, monorepo config, project references.253254## Common Gotchas255256| Gotcha | Why | Fix |257|--------|-----|-----|258| `any` leaks | `any` disables type checking for everything it touches | Use `unknown` + narrowing instead |259| `as` assertions hide bugs | Assertion doesn't check at runtime | Use type guards or validation (Zod) |260| `enum` quirks | Numeric enums are not type-safe, reverse mappings confuse | Use `as const` objects or string literal unions |261| `object` vs `Record` vs `{}` | `{}` matches any non-null value, `object` is non-primitive | Use `Record<string, unknown>` for "any object" |262| Array index access | `arr[999]` returns `T` not `T \| undefined` by default | Enable `noUncheckedIndexedAccess` |263| Optional vs undefined | `{ x?: string }` allows missing key, `{ x: string \| undefined }` requires key | Be explicit about which you mean |264| `!` non-null assertion | Silences null checks, no runtime effect | Use `?? defaultValue` or proper null check |265| Structural typing surprise | `{ a: 1, b: 2 }` assignable to `{ a: number }` | Use branded types for nominal typing |266267## Branded / Nominal Types268269```typescript270// Prevent accidentally mixing types that are structurally identical271type UserId = string & { readonly __brand: "UserId" };272type OrderId = string & { readonly __brand: "OrderId" };273274function createUserId(id: string): UserId { return id as UserId; }275276function getUser(id: UserId) { /* ... */ }277278const userId = createUserId("u-123");279const orderId = "o-456" as OrderId;280281getUser(userId); // OK282getUser(orderId); // Error: OrderId not assignable to UserId283```284285## Runtime Validation (Zod 4)286287```typescript288import { z } from "zod";289290// Define schema (Zod 4: string formats are top-level - z.email(), not z.string().email())291const UserSchema = z.object({292 id: z.number(),293 name: z.string().min(1),294 email: z.email(),295 role: z.enum(["admin", "user"]),296 settings: z.object({297 theme: z.enum(["light", "dark"]).default("light"),298 }).optional(),299});300301// Infer type from schema302type User = z.infer<typeof UserSchema>;303304// Validate305const user = UserSchema.parse(untrustedData); // throws on invalid306const result = UserSchema.safeParse(untrustedData); // returns { success, data/error }307```308309**Zod 4 changes to know** (if you learned Zod 3): string formats moved to the top level310(`z.email()`, `z.uuid()`, `z.url()` — the `z.string().email()` method form is deprecated);311error customisation unified under a single `error` param (`invalid_type_error` /312`required_error` dropped); much faster parsing and a tree-shakeable `zod/mini` entry point.313314## Reference Files315316Load these for deep-dive topics. Each is self-contained.317318| Reference | When to Load |319|-----------|-------------|320| `./references/type-system.md` | Advanced types, branded types, type-level programming, satisfies operator |321| `./references/generics-patterns.md` | Generic constraints, conditional types, mapped types, template literals, recursive types |322| `./references/utility-types.md` | All built-in utility types with examples, custom utility types |323| `./references/config-strict.md` | tsconfig deep dive, strict mode migration, project references, monorepo setup |324| `./references/ts7-native-compiler.md` | Adopting the TS 7 native (Go) compiler: no JS API, bin ambiguity, ecosystem lockout, benchmarked go/no-go |325| `./references/ecosystem.md` | Zod/Valibot, type-safe API clients, ORM types, testing with Vitest |326327## See Also328329- `testing-ops` - Cross-language testing strategies330- `ci-cd-ops` - TypeScript CI pipelines, type checking in CI