TypeScript Pro
Core Workflow
- Analyze type architecture - Review tsconfig, type coverage, build performance
- Design type-first APIs - Create branded types, generics, utility types
- Implement with type safety - Write type guards, discriminated unions, conditional types; run
tsc --noEmit to catch type errors before proceeding
- Optimize build - Configure project references, incremental compilation, tree shaking; re-run
tsc --noEmit to confirm zero errors after changes
- Test types - Confirm type coverage with a tool like
type-coverage; validate that all public APIs have explicit return types; iterate on steps 3–4 until all checks pass
Reference Guide
Load detailed guidance based on context:
| Topic |
Reference |
Load When |
| Advanced Types |
references/advanced-types.md |
Generics, conditional types, mapped types, template literals |
| Type Guards |
references/type-guards.md |
Type narrowing, discriminated unions, assertion functions |
| Utility Types |
references/utility-types.md |
Partial, Pick, Omit, Record, custom utilities |
| Configuration |
references/configuration.md |
tsconfig options, strict mode, project references |
| Patterns |
references/patterns.md |
Builder pattern, factory pattern, type-safe APIs |
Code Examples
Branded Types
// Branded type for domain modeling
type Brand<T, B extends string> = T & { readonly __brand: B };
type UserId = Brand<string, "UserId">;
type OrderId = Brand<number, "OrderId">;
const toUserId = (id: string): UserId => id as UserId;
const toOrderId = (id: number): OrderId => id as OrderId;
// Usage — prevents accidental id mix-ups at compile time
function getOrder(userId: UserId, orderId: OrderId) { /* ... */ }
Discriminated Unions & Type Guards
type LoadingState = { status: "loading" };
type SuccessState = { status: "success"; data: string[] };
type ErrorState = { status: "error"; error: Error };
type RequestState = LoadingState | SuccessState | ErrorState;
// Type predicate guard
function isSuccess(state: RequestState): state is SuccessState {
return state.status === "success";
}
// Exhaustive switch with discriminated union
function renderState(state: RequestState): string {
switch (state.status) {
case "loading": return "Loading…";
case "success": return state.data.join(", ");
case "error": return state.error.message;
default: {
const _exhaustive: never = state;
throw new Error(`Unhandled state: ${_exhaustive}`);
}
}
}
Custom Utility Types
// Deep readonly — immutable nested objects
type DeepReadonly<T> = {
readonly [K in keyof T]: T[K] extends object ? DeepReadonly<T[K]> : T[K];
};
// Require exactly one of a set of keys
type RequireExactlyOne<T, Keys extends keyof T = keyof T> =
Pick<T, Exclude<keyof T, Keys>> &
{ [K in Keys]-?: Required<Pick<T, K>> & Partial<Record<Exclude<Keys, K>, never>> }[Keys];
Recommended tsconfig.json
{
"compilerOptions": {
"target": "ES2022",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"strict": true,
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true,
"exactOptionalPropertyTypes": true,
"isolatedModules": true,
"declaration": true,
"declarationMap": true,
"incremental": true,
"skipLibCheck": false
}
}
Constraints
MUST DO
- Enable strict mode with all compiler flags
- Use type-first API design
- Implement branded types for domain modeling
- Use
satisfies operator for type validation
- Create discriminated unions for state machines
- Use
Annotated pattern with type predicates
- Generate declaration files for libraries
- Optimize for type inference
MUST NOT DO
- Use explicit
any without justification
- Skip type coverage for public APIs
- Mix type-only and value imports
- Disable strict null checks
- Use
as assertions without necessity
- Ignore compiler performance warnings
- Skip declaration file generation
- Use enums (prefer const objects with
as const)
Output Templates
When implementing TypeScript features, provide:
- Type definitions (interfaces, types, generics)
- Implementation with type guards
- tsconfig configuration if needed
- Brief explanation of type design decisions
Knowledge Reference
TypeScript 5.0+, generics, conditional types, mapped types, template literal types, discriminated unions, type guards, branded types, tRPC, project references, incremental compilation, declaration files, const assertions, satisfies operator
1---2name: typescript-pro3description: Implements advanced TypeScript type systems, creates custom type guards, utility types, and branded types, and configures tRPC for end-to-end type safety. Use when building TypeScript applications requiring advanced generics, conditional or mapped types, discriminated unions, monorepo setup, or full-stack type safety with tRPC.4license: MIT5---67# TypeScript Pro89## Core Workflow10111. **Analyze type architecture** - Review tsconfig, type coverage, build performance122. **Design type-first APIs** - Create branded types, generics, utility types133. **Implement with type safety** - Write type guards, discriminated unions, conditional types; run `tsc --noEmit` to catch type errors before proceeding144. **Optimize build** - Configure project references, incremental compilation, tree shaking; re-run `tsc --noEmit` to confirm zero errors after changes155. **Test types** - Confirm type coverage with a tool like `type-coverage`; validate that all public APIs have explicit return types; iterate on steps 3–4 until all checks pass1617## Reference Guide1819Load detailed guidance based on context:2021| Topic | Reference | Load When |22|-------|-----------|-----------|23| Advanced Types | `references/advanced-types.md` | Generics, conditional types, mapped types, template literals |24| Type Guards | `references/type-guards.md` | Type narrowing, discriminated unions, assertion functions |25| Utility Types | `references/utility-types.md` | Partial, Pick, Omit, Record, custom utilities |26| Configuration | `references/configuration.md` | tsconfig options, strict mode, project references |27| Patterns | `references/patterns.md` | Builder pattern, factory pattern, type-safe APIs |2829## Code Examples3031### Branded Types32```typescript33// Branded type for domain modeling34type Brand<T, B extends string> = T & { readonly __brand: B };35type UserId = Brand<string, "UserId">;36type OrderId = Brand<number, "OrderId">;3738const toUserId = (id: string): UserId => id as UserId;39const toOrderId = (id: number): OrderId => id as OrderId;4041// Usage — prevents accidental id mix-ups at compile time42function getOrder(userId: UserId, orderId: OrderId) { /* ... */ }43```4445### Discriminated Unions & Type Guards46```typescript47type LoadingState = { status: "loading" };48type SuccessState = { status: "success"; data: string[] };49type ErrorState = { status: "error"; error: Error };50type RequestState = LoadingState | SuccessState | ErrorState;5152// Type predicate guard53function isSuccess(state: RequestState): state is SuccessState {54 return state.status === "success";55}5657// Exhaustive switch with discriminated union58function renderState(state: RequestState): string {59 switch (state.status) {60 case "loading": return "Loading…";61 case "success": return state.data.join(", ");62 case "error": return state.error.message;63 default: {64 const _exhaustive: never = state;65 throw new Error(`Unhandled state: ${_exhaustive}`);66 }67 }68}69```7071### Custom Utility Types72```typescript73// Deep readonly — immutable nested objects74type DeepReadonly<T> = {75 readonly [K in keyof T]: T[K] extends object ? DeepReadonly<T[K]> : T[K];76};7778// Require exactly one of a set of keys79type RequireExactlyOne<T, Keys extends keyof T = keyof T> =80 Pick<T, Exclude<keyof T, Keys>> &81 { [K in Keys]-?: Required<Pick<T, K>> & Partial<Record<Exclude<Keys, K>, never>> }[Keys];82```8384### Recommended tsconfig.json85```json86{87 "compilerOptions": {88 "target": "ES2022",89 "module": "NodeNext",90 "moduleResolution": "NodeNext",91 "strict": true,92 "noUncheckedIndexedAccess": true,93 "noImplicitOverride": true,94 "exactOptionalPropertyTypes": true,95 "isolatedModules": true,96 "declaration": true,97 "declarationMap": true,98 "incremental": true,99 "skipLibCheck": false100 }101}102```103104## Constraints105106### MUST DO107- Enable strict mode with all compiler flags108- Use type-first API design109- Implement branded types for domain modeling110- Use `satisfies` operator for type validation111- Create discriminated unions for state machines112- Use `Annotated` pattern with type predicates113- Generate declaration files for libraries114- Optimize for type inference115116### MUST NOT DO117- Use explicit `any` without justification118- Skip type coverage for public APIs119- Mix type-only and value imports120- Disable strict null checks121- Use `as` assertions without necessity122- Ignore compiler performance warnings123- Skip declaration file generation124- Use enums (prefer const objects with `as const`)125126## Output Templates127128When implementing TypeScript features, provide:1291. Type definitions (interfaces, types, generics)1302. Implementation with type guards1313. tsconfig configuration if needed1324. Brief explanation of type design decisions133134## Knowledge Reference135136TypeScript 5.0+, generics, conditional types, mapped types, template literal types, discriminated unions, type guards, branded types, tRPC, project references, incremental compilation, declaration files, const assertions, satisfies operator