UNPKG

@fal-works/esbuild-plugin-global-externals

Version:

esbuild plugin for replacing imports with global variables.

10 lines (9 loc) 262 B
export const normalizeModuleInfo = (value) => { const { type = "esm", varName, namedExports = null, defaultExport = true, } = typeof value === "string" ? { varName: value } : value; return { type, varName, namedExports, defaultExport }; };