Skip to content

Commit

Permalink
Merge pull request #21 from junwatu/master
Browse files Browse the repository at this point in the history
Remove unnecessary .babelrc config
  • Loading branch information
junwatu committed Oct 4, 2022
2 parents 2fb7063 + dce86da commit ff5cba8
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 20 deletions.
11 changes: 0 additions & 11 deletions .babelrc

This file was deleted.

18 changes: 9 additions & 9 deletions babel.config.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,19 @@
module.exports = {
presets: [
[
'@babel/preset-env',
"@babel/preset-env",
{
targets: {
node: process.version.node,
node: 16,
esmodules: true,
chrome: 76,
edge: 75,
firefox: 69
firefox: 69,
},
useBuiltIns: 'entry',
ignoreBrowserslistConfig: true
}
useBuiltIns: "entry",
ignoreBrowserslistConfig: true,
},
],
['@babel/preset-flow']
]
}
["@babel/preset-flow"],
],
};

0 comments on commit ff5cba8

Please sign in to comment.