forked from xiachufang/vue3-ts-util
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.config.js
39 lines (37 loc) · 898 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
import ts from "rollup-plugin-typescript2";
import vue from "rollup-plugin-vue";
import autoExternal from "rollup-plugin-auto-external";
import { getBabelInputPlugin } from '@rollup/plugin-babel'
import styles from "rollup-plugin-styles";
const getPlugins = (esm = true) => [
vue({ preprocessStyles: true }),
styles(),
autoExternal(),
getBabelInputPlugin({
include: ['src/**/*.{ts,tsx}'],
extensions: ['.tsx'],
babelHelpers: 'inline',
configFile: './babel.config.js'
}),
ts(esm ? {} : { tsconfigOverride: { compilerOptions: { target: "es5" } } }),
]
export default [
{
input: "src/index.ts",
output: {
dir: "es",
format: "esm",
preserveModules: true
},
plugins: getPlugins(),
},
{
input: "src/index.ts",
watch: false,
output: {
dir: "dist",
format: "cjs",
},
plugins: getPlugins(false),
},
];