-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathrollup.config.ts
39 lines (37 loc) · 855 Bytes
/
rollup.config.ts
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
import ts from "rollup-plugin-ts";
import json from "@rollup/plugin-json";
import {di} from "@wessberg/di-compiler";
import pkg from "./package.json" assert {type: "json"};
import {builtinModules} from "module";
const SHARED_OUTPUT_OPTIONS = {
sourcemap: true,
hoistTransitiveImports: false,
generatedCode: "es2015",
compact: false,
minifyInternalExports: false
};
export default {
input: "src/index.ts",
output: [
{
file: pkg.exports.require,
format: "cjs",
...SHARED_OUTPUT_OPTIONS
},
{
file: pkg.exports.import,
format: "esm",
...SHARED_OUTPUT_OPTIONS
}
],
plugins: [
json({
preferConst: true
}),
ts({
tsconfig: "tsconfig.build.json",
transformers: [di]
})
],
external: [...builtinModules, ...Object.keys(pkg.dependencies == null ? {} : pkg.dependencies), ...Object.keys(pkg.devDependencies)]
};