This commit is contained in:
2026-04-05 16:14:23 +08:00
parent 9936b2b92c
commit 33d7460ea0
19 changed files with 1515 additions and 2 deletions

View File

@@ -0,0 +1,23 @@
# /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.