-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathrollup.config.js
69 lines (63 loc) · 1.68 KB
/
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
import path from "path";
import alias from "@rollup/plugin-alias";
import nodeResolve from "@rollup/plugin-node-resolve";
import typescript from "rollup-plugin-typescript2";
import vue from "@vitejs/plugin-vue";
import { terser } from "rollup-plugin-terser";
const pkg = require("./package.json");
const banner = `/*!
* ${pkg.name} v${pkg.version}
* (c) ${new Date().getFullYear()}. Dongkyuuuu All rights reserved.
* @license MIT
*/`;
const outputConfigs = {
cjs: {
file: pkg.main,
format: "cjs",
},
esm: {
file: pkg.module,
format: "es",
},
};
const createConfigs = (format, output) => {
output.sourcemap = !!process.env.SOURCE_MAP;
output.exports = format === "cjs" ? "named" : "auto";
output.globals = {
vue: "Vue",
};
output.banner = banner;
const pluginVue =
format === "cjs" ? vue({ template: { optimizeSSR: true } }) : vue();
return {
input: "src/index.ts",
external: ["vue"],
plugins: [
alias({
entries: [{ find: "@", replacement: path.resolve(__dirname, "src/") }],
}),
nodeResolve({
extensions: [".ts", ".tsx", ".js", ".json", ".vue"],
modules: [path.resolve(__dirname, "./"), "node_modules"],
}),
typescript({
tsconfig: path.resolve(__dirname, "tsconfig.json"),
clean: true,
tsconfigOverride: {
compilerOptions: {
sourceMap: false,
declaration: true,
declarationMap: true,
},
},
exclude: [".yarn", "__tests__"],
}),
pluginVue,
terser(),
],
output,
};
};
export default Object.keys(outputConfigs).map((format) =>
createConfigs(format, outputConfigs[format])
);