diff options
author | Mike Greiling <mike@pixelcog.com> | 2018-10-02 16:11:53 -0500 |
---|---|---|
committer | Mike Greiling <mike@pixelcog.com> | 2018-10-02 16:11:53 -0500 |
commit | 5f53269f0e4cb819c59ecd173496d6202feb7f7a (patch) | |
tree | 815bb6896b025ff7c25984cc9459ef88ac2bd6b7 /.babelrc.js | |
parent | c0dffdff401ce6d78b9373bdbbc50ee242a2bf24 (diff) | |
download | gitlab-ce-5f53269f0e4cb819c59ecd173496d6202feb7f7a.tar.gz |
Update babelrc with comments
Diffstat (limited to '.babelrc.js')
-rw-r--r-- | .babelrc.js | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/.babelrc.js b/.babelrc.js new file mode 100644 index 00000000000..27caf378b99 --- /dev/null +++ b/.babelrc.js @@ -0,0 +1,38 @@ +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', +]; + +// 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'); +} + +module.exports = { presets, plugins }; |