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