projecte_ionic/node_modules/@babel/plugin-transform-runtime/src/get-runtime-path/browser.ts
2022-02-09 18:30:03 +01:00

8 lines
227 B
TypeScript
Executable file

export default function (moduleName, dirname, absoluteRuntime) {
if (absoluteRuntime === false) return moduleName;
throw new Error(
"The 'absoluteRuntime' option is not supported when using @babel/standalone.",
);
}