From 9b979acbd05edf4eed1bb82b016c4680e8536953 Mon Sep 17 00:00:00 2001 From: peteruithoven Date: Thu, 20 Jul 2017 16:14:01 +0200 Subject: [PATCH] Ignore higher .babelrc file in example --- simpleExample/webpack.config.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/simpleExample/webpack.config.js b/simpleExample/webpack.config.js index 562c519..8bfc8e4 100644 --- a/simpleExample/webpack.config.js +++ b/simpleExample/webpack.config.js @@ -11,7 +11,8 @@ const babelLoader = { 'loose': true }] ], - plugins: [require('babel-plugin-transform-object-rest-spread')] + plugins: [require('babel-plugin-transform-object-rest-spread')], + babelrc: false } }