+3
−1
+118
−1
Loading
Pin vue-tsc to version 2.2.12 (the latest 2.x version) which properly supports Vue 2.7's v-model syntax (value + input event). Version 3.x+ incorrectly interprets v-model using Vue 3 semantics (modelValue + update:modelValue), causing false type errors even with target: 2.7 configured in tsconfig.json. Changes: - Pin vue-tsc to 2.2.12 in package.json - Add type-check script for running vue-tsc --noEmit - Update GitHub Actions workflow to use yarn type-check This enables reproducible type checking in CI without requiring code changes to work around vue-tsc's incorrect Vue 3 interpretation.