-
Notifications
You must be signed in to change notification settings - Fork 1
/
rollup.config.js
46 lines (43 loc) · 1.02 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
import {dirname} from "path"
import {mv} from "shelljs"
import pkg from "./package.json"
import prc from "./.prettierrc.json"
import commonjs from "rollup-plugin-commonjs"
import resolve from "rollup-plugin-node-resolve"
import autoExternal from "rollup-plugin-auto-external"
import babel from "rollup-plugin-babel"
import prettier from "rollup-plugin-prettier"
import typescript from "rollup-plugin-typescript2"
// #region helper
let {overrides, ...options} = prc
const prettierrc = {
options: options,
files: files => overrides.find(p => p.files === files).options
}
// #endregion
// Rollup Configuration
export default [
{
input: {
index: "src/index.ts",
cargo: "src/cargo.ts"
},
output: {
dir: dirname(pkg.main),
format: "cjs",
exports: "named"
},
experimentalCodeSplitting: true,
plugins: [
typescript({
exclude: ["test/**"],
tsconfigOverride: {compilerOptions: {module: "esnext"}}
}),
babel(),
commonjs(),
resolve(),
autoExternal(),
prettier(prettierrc.files("*.js"))
]
}
]