Welcome to mirror list, hosted at ThFree Co, Russian Federation.

webpack.coverage.js - github.com/nasa/openmct.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3b96de59ce529f7d67a904c667c8c978e4980b69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/* global module */

/*
This file extends the webpack.dev.js config to add babel istanbul coverage.
OpenMCT Continuous Integration servers use this configuration to add code coverage
information to pull requests.
*/

const config = require('./webpack.dev');
// eslint-disable-next-line no-undef
const CI = process.env.CI === 'true';

config.devtool = CI ? false : undefined;

config.devServer.hot = false;

config.module.rules.push({
    test: /\.js$/,
    exclude: /(Spec\.js$)|(node_modules)/,
    use: {
        loader: 'babel-loader',
        options: {
            retainLines: true,
            // eslint-disable-next-line no-undef
            plugins: [['babel-plugin-istanbul', {
                extension: ['.js', '.vue']
            }]]
        }
    }
});

module.exports = config;