chore: update deps

This commit is contained in:
Anthony Fu 2022-06-14 01:12:48 +08:00
parent e90d7e6f27
commit 52fdb6dd64
2 changed files with 11 additions and 0 deletions

10
src/auto-imports.d.ts vendored
View File

@ -40,6 +40,8 @@ declare global {
const inject: typeof import('vue')['inject'] const inject: typeof import('vue')['inject']
const isDark: typeof import('./composables/dark')['isDark'] const isDark: typeof import('./composables/dark')['isDark']
const isDefined: typeof import('@vueuse/core')['isDefined'] const isDefined: typeof import('@vueuse/core')['isDefined']
const isProxy: typeof import('vue')['isProxy']
const isReactive: typeof import('vue')['isReactive']
const isReadonly: typeof import('vue')['isReadonly'] const isReadonly: typeof import('vue')['isReadonly']
const isRef: typeof import('vue')['isRef'] const isRef: typeof import('vue')['isRef']
const logicAnd: typeof import('@vueuse/core')['logicAnd'] const logicAnd: typeof import('@vueuse/core')['logicAnd']
@ -136,6 +138,7 @@ declare global {
const useDisplayMedia: typeof import('@vueuse/core')['useDisplayMedia'] const useDisplayMedia: typeof import('@vueuse/core')['useDisplayMedia']
const useDocumentVisibility: typeof import('@vueuse/core')['useDocumentVisibility'] const useDocumentVisibility: typeof import('@vueuse/core')['useDocumentVisibility']
const useDraggable: typeof import('@vueuse/core')['useDraggable'] const useDraggable: typeof import('@vueuse/core')['useDraggable']
const useDropZone: typeof import('@vueuse/core')['useDropZone']
const useElementBounding: typeof import('@vueuse/core')['useElementBounding'] const useElementBounding: typeof import('@vueuse/core')['useElementBounding']
const useElementByPoint: typeof import('@vueuse/core')['useElementByPoint'] const useElementByPoint: typeof import('@vueuse/core')['useElementByPoint']
const useElementHover: typeof import('@vueuse/core')['useElementHover'] const useElementHover: typeof import('@vueuse/core')['useElementHover']
@ -242,6 +245,8 @@ declare global {
const watchIgnorable: typeof import('@vueuse/core')['watchIgnorable'] const watchIgnorable: typeof import('@vueuse/core')['watchIgnorable']
const watchOnce: typeof import('@vueuse/core')['watchOnce'] const watchOnce: typeof import('@vueuse/core')['watchOnce']
const watchPausable: typeof import('@vueuse/core')['watchPausable'] const watchPausable: typeof import('@vueuse/core')['watchPausable']
const watchPostEffect: typeof import('vue')['watchPostEffect']
const watchSyncEffect: typeof import('vue')['watchSyncEffect']
const watchThrottled: typeof import('@vueuse/core')['watchThrottled'] const watchThrottled: typeof import('@vueuse/core')['watchThrottled']
const watchWithFilter: typeof import('@vueuse/core')['watchWithFilter'] const watchWithFilter: typeof import('@vueuse/core')['watchWithFilter']
const whenever: typeof import('@vueuse/core')['whenever'] const whenever: typeof import('@vueuse/core')['whenever']
@ -288,6 +293,8 @@ declare module 'vue' {
inject: typeof import('vue')['inject'] inject: typeof import('vue')['inject']
isDark: typeof import('./composables/dark')['isDark'] isDark: typeof import('./composables/dark')['isDark']
isDefined: typeof import('@vueuse/core')['isDefined'] isDefined: typeof import('@vueuse/core')['isDefined']
isProxy: typeof import('vue')['isProxy']
isReactive: typeof import('vue')['isReactive']
isReadonly: typeof import('vue')['isReadonly'] isReadonly: typeof import('vue')['isReadonly']
isRef: typeof import('vue')['isRef'] isRef: typeof import('vue')['isRef']
logicAnd: typeof import('@vueuse/core')['logicAnd'] logicAnd: typeof import('@vueuse/core')['logicAnd']
@ -384,6 +391,7 @@ declare module 'vue' {
useDisplayMedia: typeof import('@vueuse/core')['useDisplayMedia'] useDisplayMedia: typeof import('@vueuse/core')['useDisplayMedia']
useDocumentVisibility: typeof import('@vueuse/core')['useDocumentVisibility'] useDocumentVisibility: typeof import('@vueuse/core')['useDocumentVisibility']
useDraggable: typeof import('@vueuse/core')['useDraggable'] useDraggable: typeof import('@vueuse/core')['useDraggable']
useDropZone: typeof import('@vueuse/core')['useDropZone']
useElementBounding: typeof import('@vueuse/core')['useElementBounding'] useElementBounding: typeof import('@vueuse/core')['useElementBounding']
useElementByPoint: typeof import('@vueuse/core')['useElementByPoint'] useElementByPoint: typeof import('@vueuse/core')['useElementByPoint']
useElementHover: typeof import('@vueuse/core')['useElementHover'] useElementHover: typeof import('@vueuse/core')['useElementHover']
@ -490,6 +498,8 @@ declare module 'vue' {
watchIgnorable: typeof import('@vueuse/core')['watchIgnorable'] watchIgnorable: typeof import('@vueuse/core')['watchIgnorable']
watchOnce: typeof import('@vueuse/core')['watchOnce'] watchOnce: typeof import('@vueuse/core')['watchOnce']
watchPausable: typeof import('@vueuse/core')['watchPausable'] watchPausable: typeof import('@vueuse/core')['watchPausable']
watchPostEffect: typeof import('vue')['watchPostEffect']
watchSyncEffect: typeof import('vue')['watchSyncEffect']
watchThrottled: typeof import('@vueuse/core')['watchThrottled'] watchThrottled: typeof import('@vueuse/core')['watchThrottled']
watchWithFilter: typeof import('@vueuse/core')['watchWithFilter'] watchWithFilter: typeof import('@vueuse/core')['watchWithFilter']
whenever: typeof import('@vueuse/core')['whenever'] whenever: typeof import('@vueuse/core')['whenever']

View File

@ -12,6 +12,7 @@
"resolveJsonModule": true, "resolveJsonModule": true,
"noUnusedLocals": true, "noUnusedLocals": true,
"strictNullChecks": true, "strictNullChecks": true,
"allowJs": true,
"forceConsistentCasingInFileNames": true, "forceConsistentCasingInFileNames": true,
"types": [ "types": [
"vitest", "vitest",