diff options
author | Nick Van Doorn <vandoorn.nick@gmail.com> | 2019-04-02 15:41:06 -0700 |
---|---|---|
committer | Nick Van Doorn <vandoorn.nick@gmail.com> | 2019-04-02 15:41:06 -0700 |
commit | d7bfb3ee24d4e8c148ec2870dbaa812762d08699 (patch) | |
tree | ab833fb4e08cd09b8d9ef22525c538ccdf6d8046 /babel.config.js | |
parent | c7fed806f7f1adac11d32eb61b55724be83ea949 (diff) |
Configure Jest babel
Diffstat (limited to 'babel.config.js')
-rw-r--r-- | babel.config.js | 12 |
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' + } + } + ] + ] +} |