build(deps): 降级 @types/node 和 @vue/tsconfig 版本

- 将 @types/node 版本从 ^24.3.0 降级到 ^22.17.2
- 将 @vue/tsconfig 版本从 ^0.8.0 降级到 ^0.7.0
This commit is contained in:
严浩
2025-08-18 11:41:38 +08:00
parent 46e5fd3e49
commit 95a3676fba
3 changed files with 107 additions and 107 deletions

View File

@@ -4,8 +4,8 @@ import { cn } from '@/shadcn/lib/utils'
import { useVModel } from '@vueuse/core'
const props = defineProps<{
defaultValue: string | number | undefined
modelValue: string | number | undefined
defaultValue?: string | number | undefined
modelValue?: string | number | undefined
class?: HTMLAttributes['class']
}>()