TypeScript Guidelines
Standards and best practices for TypeScript development with modern tooling. Follow these guidelines when writing or modifying TypeScript code.
Design Principles
Apply DRY, KISS, and SOLID consistently. Prefer functional approaches where relevant; use classes for stateful behavior. Use composition over inheritance. Each module should have a single responsibility. Use dependency injection for class dependencies.
Code Style
- Naming: Descriptive yet concise names for variables, functions, and classes
- Documentation: JSDoc comments for public APIs, complex logic, and non-obvious design decisions
- Type annotations: Be explicit with typing to reduce inference time; avoid
any unless necessary
- Imports: Avoid barrel exports to prevent circular dependencies; prefer direct imports
Type Safety
- Strict TypeScript: Use strict mode with proper type definitions. Use type-safe patterns like Zod schemas for validation and type-safe DOM helpers where applicable.
- Avoid
any: Use unknown instead of any when the type is truly unknown. Narrow types appropriately.
- Type inference: Be explicit with typing to reduce inference time and improve clarity
Type Patterns
- Union types: Use union types for values that can be one of several types
- Discriminated unions: Use discriminated unions for type-safe state machines
- Generic constraints: Use generic constraints to ensure type safety
- Utility types: Leverage TypeScript utility types (Pick, Omit, Partial, etc.)
Architecture
Module Organization
- Each module focuses on one concern with clear boundaries
- Extract reusable functions to avoid duplication
- Design for reusability across contexts
- Co-locate types with their usage or in dedicated type files
- Keep types at appropriate module boundaries
Dependency Management
- Use dependency injection for testability
- Prefer composition over inheritance
- Keep dependencies minimal and focused
Testing
Structure
- Tests mirror
src/ directory structure
- Test files:
*.test.ts or *.spec.ts
- Use descriptive test names
- Always check for appropriate unit tests when changing code
Quality
- Use AAA (Arrange, Act, Assert) pattern
- Tests should be useful, readable, concise, maintainable
- Test edge cases and error conditions
- Maintain test coverage for critical paths
Tools
- Vitest: Use Vitest for unit and integration tests (preferred over Jest)
- Use
@vitest/coverage-v8 for coverage
- Use
jsdom for DOM testing when needed
- Mock external dependencies appropriately
- Playwright: Use Playwright for end-to-end (E2E) tests
Code Formatting and Linting
Prettier
- Use Prettier for consistent code formatting
- Config:
printWidth: 120, singleQuote: true, jsxSingleQuote: true
- Run
pnpm format to format code
- Run
pnpm format:check to check formatting
ESLint
- Use ESLint with TypeScript plugin
- Use
@typescript-eslint/parser and @typescript-eslint/eslint-plugin
- Run
pnpm lint to check linting
- Run
pnpm lint:fix to auto-fix issues
Framework Recommendations
For Non-Heavy Client Interaction
- Astro: Excellent choice for content-focused sites, blogs, documentation
- Minimal JavaScript by default
- Static generation with server islands when needed
- Great performance and SEO
- TypeScript-first with excellent DX
For Heavy Client Interaction
- React, Svelte, or SolidJS with TypeScript
- Choose based on team preference and project requirements
Build Tools
- Vite: Preferred build tool for development and production (unless directed otherwise)
- Modern Rust-based tooling: Prefer Rolldown or other lower-level language tooling
- Avoid Webpack and other older JavaScript-based bundlers unless specifically required
Package Management
- pnpm: Preferred package manager (faster, more efficient than npm/yarn)
- Use
packageManager field in package.json
- Use pnpm workspaces for monorepos
Implementation
When implementing TypeScript code:
- Ensure code passes type checking before committing
- Group related changes with tests in atomic commits
- Check for existing workflow patterns (spec-first, TDD, etc.) and follow them
References
For monorepo-specific patterns using pnpm, see references/pnpm-monorepo.md.
1---2name: typescript3description: TypeScript standards and best practices with modern tooling. Use when working with TypeScript or TypeScript React files.4---5
6# TypeScript Guidelines
7
8Standards and best practices for TypeScript development with modern tooling. Follow these guidelines when writing or modifying TypeScript code.
9
10## Design Principles
11
12Apply DRY, KISS, and SOLID consistently. Prefer functional approaches where relevant; use classes for stateful behavior. Use composition over inheritance. Each module should have a single responsibility. Use dependency injection for class dependencies.
13
14## Code Style
15
16- **Naming**: Descriptive yet concise names for variables, functions, and classes
17- **Documentation**: JSDoc comments for public APIs, complex logic, and non-obvious design decisions
18- **Type annotations**: Be explicit with typing to reduce inference time; avoid `any` unless necessary
19- **Imports**: Avoid barrel exports to prevent circular dependencies; prefer direct imports
20
21## Type Safety
22
23- **Strict TypeScript**: Use strict mode with proper type definitions. Use type-safe patterns like Zod schemas for validation and type-safe DOM helpers where applicable.
24- **Avoid `any`**: Use `unknown` instead of `any` when the type is truly unknown. Narrow types appropriately.
25- **Type inference**: Be explicit with typing to reduce inference time and improve clarity
26
27## Type Patterns
28
29- **Union types**: Use union types for values that can be one of several types
30- **Discriminated unions**: Use discriminated unions for type-safe state machines
31- **Generic constraints**: Use generic constraints to ensure type safety
32- **Utility types**: Leverage TypeScript utility types (Pick, Omit, Partial, etc.)
33
34## Architecture
35
36### Module Organization
37
38- Each module focuses on one concern with clear boundaries
39- Extract reusable functions to avoid duplication
40- Design for reusability across contexts
41- Co-locate types with their usage or in dedicated type files
42- Keep types at appropriate module boundaries
43
44### Dependency Management
45
46- Use dependency injection for testability
47- Prefer composition over inheritance
48- Keep dependencies minimal and focused
49
50## Testing
51
52### Structure
53
54- Tests mirror `src/` directory structure
55- Test files: `*.test.ts` or `*.spec.ts`
56- Use descriptive test names
57- Always check for appropriate unit tests when changing code
58
59### Quality
60
61- Use AAA (Arrange, Act, Assert) pattern
62- Tests should be useful, readable, concise, maintainable
63- Test edge cases and error conditions
64- Maintain test coverage for critical paths
65
66### Tools
67
68- **Vitest**: Use Vitest for unit and integration tests (preferred over Jest)
69- Use `@vitest/coverage-v8` for coverage
70- Use `jsdom` for DOM testing when needed
71- Mock external dependencies appropriately
72- **Playwright**: Use Playwright for end-to-end (E2E) tests
73
74## Code Formatting and Linting
75
76### Prettier
77
78- Use Prettier for consistent code formatting
79- Config: `printWidth: 120`, `singleQuote: true`, `jsxSingleQuote: true`
80- Run `pnpm format` to format code
81- Run `pnpm format:check` to check formatting
82
83### ESLint
84
85- Use ESLint with TypeScript plugin
86- Use `@typescript-eslint/parser` and `@typescript-eslint/eslint-plugin`
87- Run `pnpm lint` to check linting
88- Run `pnpm lint:fix` to auto-fix issues
89
90## Framework Recommendations
91
92### For Non-Heavy Client Interaction
93
94- **Astro**: Excellent choice for content-focused sites, blogs, documentation
95 - Minimal JavaScript by default
96 - Static generation with server islands when needed
97 - Great performance and SEO
98 - TypeScript-first with excellent DX
99
100### For Heavy Client Interaction
101
102- React, Svelte, or SolidJS with TypeScript
103- Choose based on team preference and project requirements
104
105## Build Tools
106
107- **Vite**: Preferred build tool for development and production (unless directed otherwise)
108- **Modern Rust-based tooling**: Prefer Rolldown or other lower-level language tooling
109 - Avoid Webpack and other older JavaScript-based bundlers unless specifically required
110
111## Package Management
112
113- **pnpm**: Preferred package manager (faster, more efficient than npm/yarn)
114- Use `packageManager` field in package.json
115- Use pnpm workspaces for monorepos
116
117## Implementation
118
119When implementing TypeScript code:
120- Ensure code passes type checking before committing
121- Group related changes with tests in atomic commits
122- Check for existing workflow patterns (spec-first, TDD, etc.) and follow them
123
124## References
125
126For monorepo-specific patterns using pnpm, see `references/pnpm-monorepo.md`.