From d420d2092c521024ea7599da43af3c84ed80aedc Mon Sep 17 00:00:00 2001 From: Huston Franklin Date: Wed, 15 May 2024 07:58:44 -0600 Subject: [PATCH] Remove Babel plugins for import-meta --- babel.config.cjs.json | 4 ---- babel.config.esm.json | 3 +-- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/babel.config.cjs.json b/babel.config.cjs.json index 9482329f6..b7c9bb40c 100644 --- a/babel.config.cjs.json +++ b/babel.config.cjs.json @@ -9,9 +9,5 @@ } ], "@babel/preset-typescript" - ], - "plugins": [ - ["babel-plugin-transform-import-meta"], - ["babel-plugin-add-import-extension"] ] } diff --git a/babel.config.esm.json b/babel.config.esm.json index 129c867aa..4e13e4803 100644 --- a/babel.config.esm.json +++ b/babel.config.esm.json @@ -2,6 +2,5 @@ "presets": [ ["@babel/preset-env", { "targets": { "node": "16" }, "modules": false }], "@babel/preset-typescript" - ], - "plugins": [["babel-plugin-add-import-extension"]] + ] }