mirror of
https://github.com/nasa/openmct.git
synced 2024-12-27 08:32:28 +00:00
10 lines
259 B
JavaScript
10 lines
259 B
JavaScript
|
// This is a Babel config that webpack.coverage.js uses in order to instrument
|
||
|
// code with coverage instrumentation.
|
||
|
const babelConfig = {
|
||
|
plugins: [['babel-plugin-istanbul', {
|
||
|
extension: ['.js', '.vue']
|
||
|
}]]
|
||
|
};
|
||
|
|
||
|
module.exports = babelConfig;
|