From a7eaa8392025090c2151546e701575bcf3e74dba Mon Sep 17 00:00:00 2001 From: Theresa Gresch Date: Wed, 24 Jul 2019 10:04:58 +0200 Subject: [PATCH] Create .babelrc --- frontend/.babelrc | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 frontend/.babelrc diff --git a/frontend/.babelrc b/frontend/.babelrc new file mode 100644 index 000000000..2bf278160 --- /dev/null +++ b/frontend/.babelrc @@ -0,0 +1,17 @@ +{ + "env": { + "test": { + "presets": [ + "@babel/preset-env" + ], + "plugins": [ ["istanbul", { + "exclude": [ + "**/*_test.js" + ] + }] ] + } + }, + "presets": [ + "@babel/preset-env" + ] +} \ No newline at end of file