Back to Instructions
Enable and follow TypeScript strict mode guidelines:

- Always enable strict mode in tsconfig.json
- Never use 'any' type - use 'unknown' and type guards instead
- Define explicit return types for functions
- Use discriminated unions for complex state
- Leverage utility types (Partial, Required, Pick, Omit)
- Implement proper null checking
- Use const assertions for literal types

TypeScript Strict Mode

TypeScriptType SafetyStrict Mode
v0 Team

v0 Team

Author