diff --git a/babel.config.js b/babel.config.js index 189bc1e37..e8859a29f 100644 --- a/babel.config.js +++ b/babel.config.js @@ -2,7 +2,8 @@ module.exports = { presets: [['@babel/preset-env', { targets: { node: 'current' } }]], env: { test: { - plugins: ['@babel/plugin-transform-runtime'], + // Keep test transforms simple to avoid requiring @babel/runtime for transpiled deps + plugins: [], }, }, };