From 5f514329872cabd3d00cfca7640acca227c3f962 Mon Sep 17 00:00:00 2001 From: Travis Ralston Date: Thu, 9 Jan 2020 17:14:50 -0700 Subject: [PATCH] Convert babel config to a different babel config This is needed because of https://github.com/facebook/jest/issues/6229 --- .babelrc => babel.config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename .babelrc => babel.config.js (97%) diff --git a/.babelrc b/babel.config.js similarity index 97% rename from .babelrc rename to babel.config.js index f75a9f82ef..c83be72518 100644 --- a/.babelrc +++ b/babel.config.js @@ -1,4 +1,4 @@ -{ +module.exports = { "sourceMaps": "inline", "presets": [ ["@babel/preset-env", { @@ -23,4 +23,4 @@ "@babel/plugin-syntax-dynamic-import", "@babel/plugin-transform-runtime" ] -} +};