mirror of
https://github.com/ansible/awx.git
synced 2024-11-01 08:21:15 +03:00
17 lines
276 B
JavaScript
17 lines
276 B
JavaScript
|
module.exports = api => {
|
||
|
api.cache(false);
|
||
|
return {
|
||
|
plugins: [
|
||
|
'@babel/plugin-proposal-class-properties'
|
||
|
],
|
||
|
presets: [
|
||
|
['@babel/preset-env', {
|
||
|
targets: {
|
||
|
node: '8.11'
|
||
|
}
|
||
|
}],
|
||
|
'@babel/preset-react'
|
||
|
]
|
||
|
};
|
||
|
};
|