Feature/update dependencies (#477)

* Remove accidentally committed script

* Update dependencies

* [ESLint] Fix issues

* Remove unnecessary "??" operator

* Update "vite" to v5.x

* Disable "no default export" rule in vite config
This commit is contained in:
schroda
2023-11-25 18:13:51 +01:00
committed by GitHub
parent 5aa7fc0f9f
commit 47b077cbf5
6 changed files with 707 additions and 659 deletions

View File

@@ -31,8 +31,8 @@ export type RecursivePartial<T> = {
[P in keyof T]?: T[P] extends (infer U)[]
? RecursivePartial<U>[]
: T[P] extends object | undefined
? RecursivePartial<T[P]>
: T[P];
? RecursivePartial<T[P]>
: T[P];
};
export type OptionalProperty<T, K extends keyof T> = Omit<T, K> & Partial<Pick<T, K>>;