-
Notifications
You must be signed in to change notification settings - Fork 869
Expand file tree
/
Copy pathrollup.config.mjs
More file actions
30 lines (28 loc) · 844 Bytes
/
rollup.config.mjs
File metadata and controls
30 lines (28 loc) · 844 Bytes
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
import pkg from "./package.json" with { type: "json" };
import resolve from "@rollup/plugin-node-resolve";
import commonjs from "@rollup/plugin-commonjs";
import typescript from "rollup-plugin-typescript2";
const nodeBuiltinsRE = /^node:.*/; /* Regex that matches all Node built-in specifiers */
export default {
input: "src/pptxgen.ts",
output: [
{
file: "./src/bld/pptxgen.js",
format: "iife",
name: "PptxGenJS",
globals: { jszip: "JSZip" },
},
{ file: "./src/bld/pptxgen.cjs.js", format: "cjs", exports: "default" },
{ file: "./src/bld/pptxgen.es.js", format: "es" },
],
external: [
nodeBuiltinsRE,
...Object.keys(pkg.dependencies || {}),
...Object.keys(pkg.peerDependencies || {}),
],
plugins: [
resolve({ preferBuiltins: true }),
commonjs(),
typescript({ typescript: require("typescript") }),
]
};