Skip to content

Commit fa4bd64

Browse files
committed
fix: avoid workaround nuxt type errors
1 parent 3b35951 commit fa4bd64

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

packages/unplugin-react/src/nuxt.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import type { Options } from './types.ts'
88
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
99
export interface ModuleOptions extends Options {}
1010

11+
// @ts-expect-error -- FIXME should be fixed for `with`
1112
const nuxt: ReturnType<typeof defineNuxtModule> = defineNuxtModule<ModuleOptions>({
1213
meta: {
1314
name: 'nuxt-unplugin-svelte-vapor',

packages/unplugin-svelte/src/nuxt.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import type { Options } from './types.ts'
88
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
99
export interface ModuleOptions extends Options {}
1010

11+
// @ts-expect-error -- FIXME should be fixed for `with`
1112
const nuxt: ReturnType<typeof defineNuxtModule> = defineNuxtModule<ModuleOptions>({
1213
meta: {
1314
name: 'nuxt-unplugin-svelte-vapor',

0 commit comments

Comments
 (0)