This commit is contained in:
Jiiks 2019-03-04 09:55:34 +02:00
parent 5408d994be
commit 688e6022a0
1 changed files with 18 additions and 0 deletions

18
client/babel.config.js Normal file
View File

@ -0,0 +1,18 @@
module.exports = function(api) {
api.cache(true);
const presets = [['@babel/env', {
targets: {
'node': '8.6.0',
'chrome': '60'
}
}], '@babel/react'];
const plugins = [];
return {
presets,
plugins
}
}