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

gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacques Erasmus <jerasmus@gitlab.com>2019-11-22 10:14:03 +0300
committerJacques Erasmus <jerasmus@gitlab.com>2019-11-22 10:14:03 +0300
commiteb032078e44393a07752cc390aaa0ca785c3b954 (patch)
treeb7362195930bfc51e683c605a1b14a0041804a98 /rollup.config.js
parentfc1677f3616847a70c196dfc94f6be7fa83160d0 (diff)
Add Jest as a frontend testing framework
Added Jest as a frontend testing framework
Diffstat (limited to 'rollup.config.js')
-rw-r--r--rollup.config.js6
1 files changed, 1 insertions, 5 deletions
diff --git a/rollup.config.js b/rollup.config.js
index d02a10f5..ef77c955 100644
--- a/rollup.config.js
+++ b/rollup.config.js
@@ -15,17 +15,13 @@ module.exports = glob.sync(
},
plugins: [
commonjs(),
+ babel(),
vue(),
importResolver({
alias: {
'vue': './node_modules/vue/dist/vue.esm.browser.min.js'
}
}),
- babel({
- exclude: 'node_modules/**',
- babelrc: false,
- presets: ['@babel/preset-env'],
- }),
],
}));