Skip to content

Commit

Permalink
fix: support older node and browser versions (#221)
Browse files Browse the repository at this point in the history
  • Loading branch information
chanind committed Feb 24, 2021
1 parent 9b33224 commit 9384f1c
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions babel.config.js
@@ -1,13 +1,14 @@
module.exports = {
presets: [
[
"@babel/preset-env",
'@babel/preset-env',
{
targets: {
node: "current",
browsers: '>2%',
node: '12',
},
},
],
"@babel/preset-typescript",
'@babel/preset-typescript',
],
};

0 comments on commit 9384f1c

Please sign in to comment.