106 lines
3.5 KiB
JavaScript
Executable File
106 lines
3.5 KiB
JavaScript
Executable File
"use strict";
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
0 && (module.exports = {
|
|
getBabelLoader: null,
|
|
getReactCompilerLoader: null
|
|
});
|
|
function _export(target, all) {
|
|
for(var name in all)Object.defineProperty(target, name, {
|
|
enumerable: true,
|
|
get: all[name]
|
|
});
|
|
}
|
|
_export(exports, {
|
|
getBabelLoader: function() {
|
|
return getBabelLoader;
|
|
},
|
|
getReactCompilerLoader: function() {
|
|
return getReactCompilerLoader;
|
|
}
|
|
});
|
|
const _path = /*#__PURE__*/ _interop_require_default(require("path"));
|
|
function _interop_require_default(obj) {
|
|
return obj && obj.__esModule ? obj : {
|
|
default: obj
|
|
};
|
|
}
|
|
function getReactCompiler() {
|
|
try {
|
|
// It's in peerDependencies, so it should be available
|
|
// eslint-disable-next-line import/no-extraneous-dependencies
|
|
return require.resolve('babel-plugin-react-compiler');
|
|
} catch {
|
|
throw Object.defineProperty(new Error('Failed to load the `babel-plugin-react-compiler`. It is required to use the React Compiler. Please install it.'), "__NEXT_ERROR_CODE", {
|
|
value: "E78",
|
|
enumerable: false,
|
|
configurable: true
|
|
});
|
|
}
|
|
}
|
|
const getReactCompilerPlugins = (options, isDev, isServer)=>{
|
|
if (!options || isServer) {
|
|
return undefined;
|
|
}
|
|
const compilerOptions = typeof options === 'boolean' ? {} : options;
|
|
if (options) {
|
|
return [
|
|
[
|
|
getReactCompiler(),
|
|
{
|
|
panicThreshold: isDev ? undefined : 'NONE',
|
|
...compilerOptions
|
|
}
|
|
]
|
|
];
|
|
}
|
|
return undefined;
|
|
};
|
|
const getBabelLoader = (useSWCLoader, babelConfigFile, isServer, distDir, pagesDir, cwd, srcDir, dev, isClient, reactCompilerOptions, reactCompilerExclude)=>{
|
|
if (!useSWCLoader) {
|
|
return {
|
|
loader: require.resolve('./babel/loader/index'),
|
|
options: {
|
|
transformMode: 'default',
|
|
configFile: babelConfigFile,
|
|
isServer,
|
|
distDir,
|
|
pagesDir,
|
|
cwd,
|
|
srcDir: _path.default.dirname(srcDir),
|
|
development: dev,
|
|
hasReactRefresh: dev && isClient,
|
|
hasJsxRuntime: true,
|
|
reactCompilerPlugins: getReactCompilerPlugins(reactCompilerOptions, dev, isServer),
|
|
reactCompilerExclude
|
|
}
|
|
};
|
|
}
|
|
return undefined;
|
|
};
|
|
/**
|
|
* Get a separate babel loader for the react compiler, only used if Babel is not
|
|
* configured through e.g. .babelrc. If user have babel config, this should be configured in the babel loader itself.
|
|
* Note from react compiler:
|
|
* > For best results, compiler must run as the first plugin in your Babel pipeline so it receives input as close to the original source as possible.
|
|
*/ const getReactCompilerLoader = (options, cwd, isDev, isServer, reactCompilerExclude)=>{
|
|
const reactCompilerPlugins = getReactCompilerPlugins(options, isDev, isServer);
|
|
if (!reactCompilerPlugins) {
|
|
return undefined;
|
|
}
|
|
const config = {
|
|
loader: require.resolve('./babel/loader/index'),
|
|
options: {
|
|
transformMode: 'standalone',
|
|
cwd,
|
|
reactCompilerPlugins
|
|
}
|
|
};
|
|
if (reactCompilerExclude) {
|
|
config.options.reactCompilerExclude = reactCompilerExclude;
|
|
}
|
|
return config;
|
|
};
|
|
|
|
//# sourceMappingURL=get-babel-loader-config.js.map
|