9e03e53fc59e5eef5836db6513d006b80e2279d1984c2fb56cf07da26a02cbe683188c02a1cda6bab4e381182fc7f1838dc9d21f5ecf394565bc44469b9e28 326 B

123456789101112131415
  1. export default function (
  2. moduleName: string,
  3. dirname: string,
  4. absoluteRuntime: string | boolean,
  5. ) {
  6. if (absoluteRuntime === false) return moduleName;
  7. resolveFSPath();
  8. }
  9. export function resolveFSPath() {
  10. throw new Error(
  11. "The 'absoluteRuntime' option is not supported when using @babel/standalone.",
  12. );
  13. }