-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.js
46 lines (38 loc) · 996 Bytes
/
rollup.config.js
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
const path = require('path');
const { defineConfig } = require('rollup');
const vuePlugin = require('rollup-plugin-vue');
const babelPlugin = require('@rollup/plugin-babel');
const { terser: terserPlugin } = require('rollup-plugin-terser');
const { nodeResolve } = require('@rollup/plugin-node-resolve');
const commonjs = require('@rollup/plugin-commonjs');
module.exports = defineConfig([
{
input: 'src/index.js',
treeshake: true,
watch: true,
cache: false,
output: {
file: path.resolve(__dirname, 'dist/index.js'),
format: 'es'
},
plugins: [
nodeResolve(),
commonjs(),
vuePlugin({
css: true,
compileTemplate: true,
template: {
isProduction: true
}
}),
babelPlugin({
babelHelpers: 'bundled',
exclude: 'node_modules/**',
babelHelpers: 'bundled',
extensions: ['.js', '.vue']
}),
terserPlugin()
],
external: ['vue']
}
]);