From 688e6022a03461ec11c26bde7258e33f3f369e27 Mon Sep 17 00:00:00 2001 From: Jiiks Date: Mon, 4 Mar 2019 09:55:34 +0200 Subject: [PATCH] pls --- client/babel.config.js | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 client/babel.config.js diff --git a/client/babel.config.js b/client/babel.config.js new file mode 100644 index 00000000..cf7eebf6 --- /dev/null +++ b/client/babel.config.js @@ -0,0 +1,18 @@ +module.exports = function(api) { + + api.cache(true); + + const presets = [['@babel/env', { + targets: { + 'node': '8.6.0', + 'chrome': '60' + } + }], '@babel/react']; + + const plugins = []; + + return { + presets, + plugins + } +} \ No newline at end of file