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

github.com/nasa/openmct.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'babel.coverage.js')
-rw-r--r--babel.coverage.js9
1 files changed, 9 insertions, 0 deletions
diff --git a/babel.coverage.js b/babel.coverage.js
new file mode 100644
index 000000000..6a752a9e5
--- /dev/null
+++ b/babel.coverage.js
@@ -0,0 +1,9 @@
+// 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;