2021-10-08 08:11:50 +01:00
|
|
|
const config = {};
|
|
|
|
|
|
|
|
if (process.env.TEST_FRONTEND) {
|
2022-04-17 08:27:35 +01:00
|
|
|
config.presets = [ "@babel/preset-env" ];
|
2021-10-08 08:11:50 +01:00
|
|
|
}
|
|
|
|
|
2021-10-12 19:53:59 +01:00
|
|
|
if (process.env.TEST_BACKEND) {
|
2022-04-17 08:27:35 +01:00
|
|
|
config.plugins = [ "babel-plugin-rewire" ];
|
2021-10-12 19:53:59 +01:00
|
|
|
}
|
|
|
|
|
2021-10-08 08:11:50 +01:00
|
|
|
module.exports = config;
|