2026-04-21 08:40:33 -03:00
|
|
|
const path = require("node:path");
|
|
|
|
|
|
2026-04-21 06:38:05 -03:00
|
|
|
module.exports = {
|
|
|
|
|
presets: [
|
|
|
|
|
[
|
|
|
|
|
"@babel/preset-env",
|
|
|
|
|
{
|
|
|
|
|
targets: { node: "current" },
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
],
|
2026-04-21 08:40:33 -03:00
|
|
|
plugins: [path.resolve(__dirname, "../testing/frontend/babel-plugin-import-meta-env.cjs")],
|
2026-04-21 06:38:05 -03:00
|
|
|
};
|