-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathrollup.config.mjs
43 lines (42 loc) · 1.17 KB
/
rollup.config.mjs
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
import typescript from "rollup-plugin-typescript2"
import commonjs from "@rollup/plugin-commonjs"
import babel from "@rollup/plugin-babel"
import resolve from "@rollup/plugin-node-resolve"
import json from "@rollup/plugin-json"
import terser from "@rollup/plugin-terser"
export default {
input: "src/index.ts",
plugins: [
typescript(), // Integration between Rollup and Typescript
commonjs(), // Convert CommonJS modules to ES6
babel({ babelHelpers: "bundled" }), // transpile ES6/7 code
resolve(), // resolve third party modules in node_modules
json() // import json files as modules
],
output: [
{
file: "dist/index.umd.js",
format: "umd", // commonJS
name: "markdownitExample", // window.name if script loaded directly in browser
sourcemap: true
},
{
file: "dist/index.umd.min.js",
format: "umd",
name: "markdownitExample",
plugins: [terser()],
sourcemap: true
},
{
file: "dist/index.esm.js",
format: "esm",
sourcemap: true
},
{
file: "dist/index.esm.min.js",
format: "esm", // ES Modules
plugins: [terser()],
sourcemap: true
}
]
}