From 009dc90b4acc2d72d7db9e94075ea949fdd01f42 Mon Sep 17 00:00:00 2001 From: Leo Lamprecht Date: Thu, 16 Feb 2017 23:54:55 +0100 Subject: [PATCH] No comments allowed in JSON --- .babelrc | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.babelrc b/.babelrc index cd568f47..262731f3 100644 --- a/.babelrc +++ b/.babelrc @@ -1,5 +1,8 @@ { - "presets": ["latest", "react"], + "presets": [ + "latest", + "react" + ], "plugins": [ "transform-object-rest-spread", "transform-class-properties", @@ -7,14 +10,13 @@ ], "env": { "test-build": { - "plugins": ["istanbul"] + "plugins": [ + "istanbul" + ] }, "test": { "presets": [ - // To transpile import statements into commonjs. - // That's because Jest(runs in Node.js) don't know how to handle them. "es2015", - // To let test apps(and Jest) to use Next's babel preset "./babel" ] }