---
description: TypeScript coding standards for the project
globs: "**/*.ts"
alwaysApply: false
---
# TypeScript Rules

Use strict TypeScript with explicit types.

## Guidelines

- Always use explicit return types for functions
- Prefer `const` over `let`
- Use interfaces over type aliases for object shapes
- Enable strict null checks
