-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrollup.config.js
34 lines (32 loc) · 961 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
import commonjs from "@rollup/plugin-commonjs";
import resolve from "@rollup/plugin-node-resolve";
import typescript2 from "rollup-plugin-typescript2";
import pkg from "./package.json";
import { builtinModules } from "module";
import analyze from "rollup-plugin-analyzer";
const generalConfig = (moduleSystem) => ({
input: "src/index.ts",
output: {
dir: `dist/${moduleSystem}`,
format: `${moduleSystem}`,
sourcemap: true,
},
external: [
// ...Object.keys(pkg.dependencies),
...Object.keys(pkg.peerDependencies),
...Object.keys(pkg.optionalDependencies),
...builtinModules,
],
plugins: [
commonjs(),
resolve(),
typescript2({
rootDir: ".",
tsconfig: `tsconfig.es.json`,
typescript: require("ttypescript"),
declaration: moduleSystem === "es" ? true : false,
}),
...(moduleSystem === "es" ? [analyze()] : []),
],
});
export default [generalConfig("cjs"), generalConfig("es")];