Fix Vue TypeScript module declarations for build

This commit is contained in:
2025-10-01 05:32:14 +00:00
parent 5e2e71eafb
commit 6639174e8f
+6
View File
@@ -1 +1,7 @@
/// <reference types="vite/client" />
declare module '*.vue' {
import type { DefineComponent } from 'vue'
const component: DefineComponent<{}, {}, any>
export default component
}