pls
This commit is contained in:
parent
5408d994be
commit
688e6022a0
|
@ -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
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue