UNPKG

vite-plugin-commonjs-externals

Version:
10 lines (7 loc) 366 B
import { Plugin } from 'vite'; interface CommonjsExternalsPluginOptions { readonly externals: ReadonlyArray<string | RegExp>; readonly exts?: ReadonlyArray<string>; } declare const commonjsExternalsPlugin: ({ externals, exts, }: CommonjsExternalsPluginOptions) => Plugin; export { type CommonjsExternalsPluginOptions, commonjsExternalsPlugin as default };