Co-authored-by: tobi <tobi.smethurst@protonmail.com> Reviewed-on: https://codeberg.org/superseriousbusiness/masto-fe-standalone/pulls/88 Co-authored-by: Zoë Bijl <moiety@noreply.codeberg.org> Co-committed-by: Zoë Bijl <moiety@noreply.codeberg.org>
28 lines
608 B
JavaScript
28 lines
608 B
JavaScript
const { join } = require("path");
|
|
|
|
const { settings, env } = require("../configuration");
|
|
|
|
module.exports = {
|
|
test: /\.(js|mjs)$/,
|
|
include: /node_modules/,
|
|
exclude: [
|
|
/@babel(?:\/|\\{1,2})runtime/,
|
|
/tesseract.js/,
|
|
],
|
|
use: [
|
|
{
|
|
loader: "babel-loader",
|
|
options: {
|
|
babelrc: false,
|
|
plugins: [
|
|
"transform-react-remove-prop-types",
|
|
],
|
|
cacheDirectory: join(settings.cache_path, "babel-loader-node-modules"),
|
|
cacheCompression: env.NODE_ENV === "production",
|
|
compact: false,
|
|
sourceMaps: false,
|
|
},
|
|
},
|
|
],
|
|
};
|