From 168b604025d58ce5d5f4b90544def7eb3222f878 Mon Sep 17 00:00:00 2001 From: Marcus Stade Date: Fri, 7 Apr 2017 15:31:16 +0200 Subject: [PATCH] Revert "Tell env preset to only use the polyfills we actually need" This reverts commit 8ad235775f49f4a7d3beac2bd926c4ad26c38733. Given we target node 4, this will include a *bunch* of polyfills anyway, so we may as well just use babel-polyfill directly. This can be revised if we decide to move away from node 4 support down the line. --- .babelrc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.babelrc b/.babelrc index b63809e..a3b9053 100644 --- a/.babelrc +++ b/.babelrc @@ -1,8 +1,8 @@ { "presets": [ [ "env" - , { targets: { node: 4 } - , useBuiltIns: true + , { targets: + { node: 4 } } ] ], @@ -11,4 +11,4 @@ "plugins": [ "istanbul" ] } } -} +} \ No newline at end of file