const path = require("node:path"); module.exports = { presets: [ [ "@babel/preset-env", { targets: { node: "current" }, }, ], ], plugins: [path.resolve(__dirname, "../testing/frontend/babel-plugin-import-meta-env.cjs")], };