Skip to content
This repository has been archived by the owner on Sep 4, 2024. It is now read-only.

Commit

Permalink
fix(babel): enable proper code transpiling during test
Browse files Browse the repository at this point in the history
  • Loading branch information
Max Lyashuk committed Jul 20, 2019
1 parent c2491c2 commit 3a91e2a
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion babel.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,14 @@ module.exports = {
env: {
test: {
presets: [
'@babel/preset-env',
[
'@babel/preset-env',
{
targets: {
node: 'current',
},
},
],
],
},
},
Expand Down

0 comments on commit 3a91e2a

Please sign in to comment.