You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
546 B
23 lines
546 B
module.exports = {
|
|
presets: [
|
|
'@babel/preset-react',
|
|
[
|
|
'@babel/preset-env',
|
|
{
|
|
targets: {
|
|
node: '8',
|
|
},
|
|
},
|
|
],
|
|
'@babel/preset-typescript',
|
|
],
|
|
plugins: ['babel-plugin-styled-components'],
|
|
only: ['src/', 'spec/'],
|
|
ignore: [
|
|
'src/frontend/assets/scripts/app-bundle.development.js',
|
|
'src/frontend/assets/scripts/app-bundle.production.js',
|
|
'src/frontend/assets/scripts/global-bundle.development.js',
|
|
'src/frontend/assets/scripts/global-bundle.production.js',
|
|
],
|
|
};
|