13 lines
481 B
TypeScript
13 lines
481 B
TypeScript
/**
|
|
* Browser stand-in for `node:module`. `createRequire` is unreachable in the
|
|
* configured loader path and fails loud if that assumption changes.
|
|
*/
|
|
|
|
/** Throwing stand-in for node:module's createRequire (never reached in the browser boot). */
|
|
export const createRequire = (): never => {
|
|
throw new Error('node:module is not available in the browser')
|
|
}
|
|
|
|
/** Erased type peer for the vendored loader's type-only LoadHookContext import. */
|
|
export type LoadHookContext = never
|