chore: upgrade deps & fix lint

This commit is contained in:
YunYouJun
2023-11-05 21:57:05 +08:00
parent e861c5bd65
commit 203ab27496
21 changed files with 2795 additions and 2938 deletions

10
shims.d.ts vendored
View File

@@ -9,13 +9,15 @@ declare interface Window {
// with vite-plugin-vue-markdown, markdowns can be treat as Vue components
declare module '*.md' {
import { type DefineComponent } from 'vue'
const component: DefineComponent<{}, {}, any>
import type { DefineComponent } from 'vue'
const component: DefineComponent<object, object, any>
export default component
}
declare module '*.vue' {
import { type DefineComponent } from 'vue'
const component: DefineComponent<{}, {}, any>
import type { DefineComponent } from 'vue'
const component: DefineComponent<object, object, any>
export default component
}