summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Van Doorn <vandoorn.nick@gmail.com>2019-04-02 15:41:06 -0700
committerNick Van Doorn <vandoorn.nick@gmail.com>2019-04-02 15:41:06 -0700
commitd7bfb3ee24d4e8c148ec2870dbaa812762d08699 (patch)
treeab833fb4e08cd09b8d9ef22525c538ccdf6d8046
parentc7fed806f7f1adac11d32eb61b55724be83ea949 (diff)
Configure Jest babel
-rw-r--r--babel.config.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/babel.config.js b/babel.config.js
new file mode 100644
index 0000000..c76a0d0
--- /dev/null
+++ b/babel.config.js
@@ -0,0 +1,12 @@
+module.exports = {
+ presets: [
+ [
+ '@babel/preset-env',
+ {
+ targets: {
+ node: 'current'
+ }
+ }
+ ]
+ ]
+}