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 47 48 49 50 51 52 53 54 55 56 57 58 59 60
| import path from 'path' import babel from '@rollup/plugin-babel' import resolve from '@rollup/plugin-node-resolve' import css from 'rollup-plugin-css-only' import commonjs from '@rollup/plugin-commonjs' import vue from 'rollup-plugin-vue'
const extensions = ['.js', '.jsx', '.ts', '.vue'];
export default { input: './src/index.ts', output: { dir: 'dist', name: 'common', format: 'esm' }, external: ['vue'], plugins: [ resolve( { extensions, } ), commonjs(), vue({ normalizer: '~vue-runtime-helpers/dist/normalize-component.js', }), babel({ extensions, exclude: /node_modules/, babelrc: false, presets: [ ['@babel/preset-env', { targets: { browsers: ["last 2 versions"] } }], '@babel/preset-typescript' , ], plugins: [ '@babel/plugin-syntax-dynamic-import', ['@babel/plugin-proposal-decorators', { 'legacy': true }], '@babel/plugin-proposal-class-properties', ['@babel/plugin-proposal-object-rest-spread', { useBuiltIns: true, }], ['@babel/plugin-transform-runtime', { corejs: 3, helpers: false, regenerator: true, useESModules: false, }], ], }), css({ output: './dist/bundle.css' }) ] }
|