chore: add `ofetch` to `typescript.hoist` (#2693)

Co-authored-by: Daniel Roe <daniel@roe.dev>
main
Joaquín Sánchez 2024-03-19 13:56:14 +01:00 committed by GitHub
parent bd4cd02b2b
commit 9251ec496b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 6 deletions

View File

@ -55,15 +55,10 @@ export default defineNuxtPlugin(async () => {
const localCall = createCall(toNodeListener(h3App) as any)
const localFetch = createLocalFetch(localCall, globalThis.fetch)
// eslint-disable-next-line ts/prefer-ts-expect-error
// @ts-ignore error TS2321: Excessive stack depth comparing types
globalThis.$fetch = createFetch({
// eslint-disable-next-line ts/prefer-ts-expect-error
// @ts-ignore slight differences in api
// @ts-expect-error slight differences in api
fetch: localFetch,
Headers,
// eslint-disable-next-line ts/prefer-ts-expect-error
// @ts-ignore error TS2321: Excessive stack depth comparing types
defaults: { baseURL: config.app.baseURL },
})