Files
ggl/check.sh
2025-09-23 07:35:11 +00:00

7 lines
222 B
Bash
Executable File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/bin/bash
# 独立的TypeScript检查脚本完全避免npm警告
# 直接调用node_modules中的vue-tsc
echo "正在进行TypeScript类型检查..."
./node_modules/.bin/vue-tsc --noEmit
echo "TypeScript检查完成"