diff --git a/src/esbuild.ts b/src/esbuild.ts index c3aec05a..0ae296b7 100644 --- a/src/esbuild.ts +++ b/src/esbuild.ts @@ -1,5 +1,5 @@ import type { Options } from './types' import unplugin from '.' -// TODO: some upstream lib failed generate invalid dts, remove the any in the future +// TODO: some upstream lib failed to generate invalid dts, remove the any in the future export default unplugin.esbuild as (options?: Options) => any diff --git a/src/rollup.ts b/src/rollup.ts index 182b3aad..0f11c770 100644 --- a/src/rollup.ts +++ b/src/rollup.ts @@ -1,5 +1,5 @@ import type { Options } from './types' import unplugin from '.' -// TODO: some upstream lib failed generate invalid dts, remove the any in the future +// TODO: some upstream lib failed to generate invalid dts, remove the any in the future export default unplugin.rollup as (options?: Options) => any diff --git a/src/rspack.ts b/src/rspack.ts index 27ce01fc..78faee46 100644 --- a/src/rspack.ts +++ b/src/rspack.ts @@ -1,5 +1,5 @@ import type { Options } from './types' import unplugin from '.' -// TODO: some upstream lib failed generate invalid dts, remove the any in the future +// TODO: some upstream lib failed to generate invalid dts, remove the any in the future export default unplugin.rspack as (options?: Options) => any diff --git a/src/vite.ts b/src/vite.ts index db3b71bf..93b240f8 100644 --- a/src/vite.ts +++ b/src/vite.ts @@ -1,5 +1,5 @@ import type { Options } from './types' import unplugin from '.' -// TODO: some upstream lib failed generate invalid dts, remove the any in the future +// TODO: some upstream lib failed to generate invalid dts, remove the any in the future export default unplugin.vite as (options?: Options) => any diff --git a/src/webpack.ts b/src/webpack.ts index 105d9b4e..ec1b801e 100644 --- a/src/webpack.ts +++ b/src/webpack.ts @@ -1,5 +1,5 @@ import type { Options } from './types' import unplugin from '.' -// TODO: some upstream lib failed generate invalid dts, remove the any in the future +// TODO: some upstream lib failed to generate invalid dts, remove the any in the future export default unplugin.webpack as (options?: Options) => any