mirror of
https://github.com/ansible/awx.git
synced 2024-10-31 23:51:09 +03:00
18 lines
292 B
JavaScript
18 lines
292 B
JavaScript
module.exports = api => {
|
|
api.cache(false);
|
|
return {
|
|
plugins: [
|
|
'@babel/plugin-proposal-class-properties',
|
|
'macros'
|
|
],
|
|
presets: [
|
|
['@babel/preset-env', {
|
|
targets: {
|
|
node: '8.11'
|
|
}
|
|
}],
|
|
'@babel/preset-react'
|
|
]
|
|
};
|
|
};
|