gitlab-org--gitlab-foss/babel.config.js

52 lines
1.2 KiB
JavaScript
Raw Normal View History

2019-02-20 20:27:23 +00:00
/* eslint-disable import/no-commonjs, filenames/match-regex */
2018-10-02 21:11:53 +00:00
const BABEL_ENV = process.env.BABEL_ENV || process.env.NODE_ENV || null;
const presets = [
[
'@babel/preset-env',
{
modules: false,
targets: {
ie: '11',
},
},
],
];
// include stage 3 proposals
const plugins = [
'@babel/plugin-syntax-dynamic-import',
'@babel/plugin-syntax-import-meta',
'@babel/plugin-proposal-class-properties',
'@babel/plugin-proposal-json-strings',
2019-01-09 06:20:56 +00:00
'@babel/plugin-proposal-private-methods',
2018-10-02 21:11:53 +00:00
];
// add code coverage tooling if necessary
if (BABEL_ENV === 'coverage') {
plugins.push([
'babel-plugin-istanbul',
{
exclude: ['spec/javascripts/**/*', 'app/assets/javascripts/locale/**/app.js'],
},
]);
}
// add rewire support when running tests
if (BABEL_ENV === 'karma' || BABEL_ENV === 'coverage') {
plugins.push('babel-plugin-rewire');
}
2018-08-29 20:45:53 +00:00
// Jest is running in node environment
if (BABEL_ENV === 'jest') {
plugins.push('@babel/plugin-transform-modules-commonjs');
/*
without the following, babel-plugin-istanbul throws an error:
https://gitlab.com/gitlab-org/gitlab-ce/issues/58390
*/
plugins.push('babel-plugin-dynamic-import-node');
2018-08-29 20:45:53 +00:00
}
2018-10-02 21:11:53 +00:00
module.exports = { presets, plugins };