From 2ffb90a1fca92dd26894e9f7a06a6f1f3f386cbb Mon Sep 17 00:00:00 2001 From: Bart van Andel Date: Thu, 5 Feb 2026 14:07:49 +0100 Subject: [PATCH] chore: configure babel to use `with` import attributes keyword --- babel.config.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/babel.config.js b/babel.config.js index deab9108..30ad89e1 100644 --- a/babel.config.js +++ b/babel.config.js @@ -22,6 +22,9 @@ module.exports = function(api) { "regenerator": true } ] - ] + ], + "generatorOpts": { + "importAttributesKeyword": "with" + } }; };