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