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