-
Notifications
You must be signed in to change notification settings - Fork 31
/
rollup.config.js
37 lines (36 loc) · 1017 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
import { getBabelOutputPlugin } from '@rollup/plugin-babel';
export default {
input: "./src/Parser.js",
output: [{
file: "./build/Parser.node.js",
format: "cjs",
name: "edjsParser",
},
{
file: "./build/Parser.esm.js",
format: "esm",
name: "edjsParser",
plugins: [getBabelOutputPlugin({
exclude: /node_modules/,
presets: [
"@babel/preset-env",
],
babelrc: false,
//allowAllFormats: true
})]
},
{
file: "./build/Parser.browser.js",
format: "iife",
name: "edjsParser",
plugins: [getBabelOutputPlugin({
exclude: /node_modules/,
presets: [
"@babel/preset-env",
],
babelrc: false,
allowAllFormats: true
})]
},
]
};