From cce0d2ab9ecb03a6548252a5ce8d003f629775e9 Mon Sep 17 00:00:00 2001 From: Ivan Goncharov Date: Thu, 15 Sep 2022 12:34:52 +0300 Subject: [PATCH] Remove unussed Babel config files Context: We removed dependency on Babel in #3557 so this is just a cleanup --- .babelrc-deno.json | 7 ------- .babelrc-npm.json | 10 ---------- .babelrc.json | 9 --------- 3 files changed, 26 deletions(-) delete mode 100644 .babelrc-deno.json delete mode 100644 .babelrc-npm.json delete mode 100644 .babelrc.json diff --git a/.babelrc-deno.json b/.babelrc-deno.json deleted file mode 100644 index 0e173bfb4e..0000000000 --- a/.babelrc-deno.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "plugins": [ - "@babel/plugin-syntax-typescript", - ["./resources/add-extension-to-import-paths", { "extension": "ts" }], - "./resources/inline-invariant" - ] -} diff --git a/.babelrc-npm.json b/.babelrc-npm.json deleted file mode 100644 index 8963ac9526..0000000000 --- a/.babelrc-npm.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "presets": [ - ["@babel/preset-env", { "modules": false, "targets": { "node": "14" } }] - ], - "plugins": [ - ["./resources/add-extension-to-import-paths.js", { "extension": "js" }], - "@babel/plugin-transform-typescript", - "./resources/inline-invariant.js" - ] -} diff --git a/.babelrc.json b/.babelrc.json deleted file mode 100644 index caa5300ad7..0000000000 --- a/.babelrc.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "plugins": ["@babel/plugin-transform-typescript"], - "presets": [ - [ - "@babel/preset-env", - { "bugfixes": true, "targets": { "node": "current" } } - ] - ] -}