UNPKG

one

Version:

One is a new React Framework that makes Vite serve both native and web.

32 lines (31 loc) 924 B
import { isBuiltin } from "node:module"; import path from "node:path"; function nodeExternals() { return { name: `node-externals`, enforce: "pre", resolveId: { order: "pre", async handler(specifier, importer, options) { if (options?.scan) return null; if (options?.isEntry || // Ignore entry points (they should always be resolved) /^(?:\0|\.{1,2}\/)/.test(specifier) || // Ignore virtual modules and relative imports path.isAbsolute(specifier)) { return null; } if (isBuiltin(specifier)) { const stripped = specifier.replace(/^node:/, ""); return { id: !isBuiltin(stripped) ? "node:" + stripped : stripped, external: true, moduleSideEffects: false }; } } } }; } export { nodeExternals }; //# sourceMappingURL=customNodeExternals.mjs.map