source: frontend/node_modules/@babel/plugin-transform-runtime/src/get-runtime-path/browser.ts

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 13 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 326 bytes
Line 
1export default function (
2 moduleName: string,
3 dirname: string,
4 absoluteRuntime: string | boolean,
5) {
6 if (absoluteRuntime === false) return moduleName;
7
8 resolveFSPath();
9}
10
11export function resolveFSPath() {
12 throw new Error(
13 "The 'absoluteRuntime' option is not supported when using @babel/standalone.",
14 );
15}
Note: See TracBrowser for help on using the repository browser.