Files
front/.kilo/command/type-check.md

24 lines
359 B
Markdown
Raw Normal View History

2026-04-05 16:14:23 +08:00
# /type-check Command
Run TypeScript type checking on the project.
## Usage
```
/type-check
```
## What This Command Does
1. Runs `vue-tsc --noEmit` to check TypeScript types
2. Reports type errors with file locations and line numbers
3. Helps catch type issues before build
## Example
```
/type-check
```
Checks all TypeScript files for type errors.