UNPKG

326 BPlain TextView Raw
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}