Просмотр исходного кода

Merge pull request #8014 from overleaf/ae-babel-test-env

Remove test environment from Babel config

GitOrigin-RevId: c812e534e82e57bfdf759b04b9753565a7781ea2
Alf Eaton 4 лет назад
Родитель
Сommit
f00bdeb3f1
1 измененных файлов с 1 добавлено и 20 удалено
  1. 1 20
      services/web/babel.config.json

+ 1 - 20
services/web/babel.config.json

@@ -11,24 +11,5 @@
     ["@babel/react", { "runtime": "automatic" }],
     "@babel/typescript"
   ],
-  "plugins": ["angularjs-annotate", "macros"],
-  // Target our current Node version in test environment, to transform and
-  // polyfill only what's necessary
-  "env": {
-    "test": {
-      "presets": [
-        [
-          "@babel/env",
-          {
-            "targets": { "node": "current" },
-            "useBuiltIns": "usage",
-            // This version must be aligned with the `core-js` version in `package.json`
-            "corejs": { "version": 3.6 }
-          }
-        ],
-        ["@babel/react", { "runtime": "automatic" }],
-        "@babel/typescript"
-      ]
-    }
-  }
+  "plugins": ["angularjs-annotate", "macros"]
 }