From 502929ba6ac50b702dcdf30625a58c02ba8a576d Mon Sep 17 00:00:00 2001 From: Graham J Date: Tue, 20 Dec 2016 15:36:30 -0500 Subject: [PATCH] Create .babelrc (#2466) When I was going through the documentation about creating custom builds I ran into the error outlined at the below link. Applying the suggested fix solved it so I'm submitting same here. http://stackoverflow.com/questions/30386317/babelify-throws-parseerror-o n-import-a-module-from-node-modules See https://github.com/almende/vis/pull/2460 --- .babelrc | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .babelrc diff --git a/.babelrc b/.babelrc new file mode 100644 index 00000000..c13c5f62 --- /dev/null +++ b/.babelrc @@ -0,0 +1,3 @@ +{ + "presets": ["es2015"] +}