.babelrc to babel.config.js and Node 10 target

This commit is contained in:
Björn Harrtell 2019-06-27 23:07:39 +02:00
parent 419609d750
commit 20c2c8873d
2 changed files with 9 additions and 9 deletions

View File

@ -1,9 +0,0 @@
{
"presets": [
["@babel/env", {
"targets": {
"node": ["8"]
}
}]
]
}

9
babel.config.js Normal file
View File

@ -0,0 +1,9 @@
module.exports = {
presets: [
['@babel/env', {
targets: {
node: ['10']
}
}]
]
}