From 68032c1fcb19999a917c89374ea0a85a9c0a9150 Mon Sep 17 00:00:00 2001 From: ElevateBart Date: Thu, 11 Feb 2021 15:52:29 -0600 Subject: [PATCH] fix: code coverage for vue --- npm/vue/babel.config.json | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/npm/vue/babel.config.json b/npm/vue/babel.config.json index 655640d8bf45..589f7ada6cbd 100644 --- a/npm/vue/babel.config.json +++ b/npm/vue/babel.config.json @@ -1,6 +1,14 @@ { "plugins": [ "@babel/plugin-transform-modules-commonjs", - "babel-plugin-istanbul" + [ + "babel-plugin-istanbul", + { + "extension": [ + ".js", + ".vue" + ] + } + ] ] }