-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.ts
99 lines (96 loc) · 2.13 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
import { nodeResolve } from "@rollup/plugin-node-resolve";
import typescript from "@rollup/plugin-typescript";
import commonjs from "rollup-plugin-commonjs";
import { generateDtsBundle } from "rollup-plugin-dts-bundle-generator";
export default [
{
input: "src/index.ts",
output: {
dir: "dist",
format: "esm"
},
plugins: [
typescript(),
commonjs({
// non-CommonJS modules will be ignored, but you can also
// specifically include/exclude files
include: ["./index.js", "node_modules/**"], // Default: undefined
// if true then uses of `global` won't be dealt with by this plugin
ignoreGlobal: false, // Default: false
// if false then skip sourceMap generation for CommonJS modules
sourceMap: false // Default: true
}),
nodeResolve({
modulesOnly: false
}),
generateDtsBundle({
entry: [{ filePath: "src/index.ts" }]
})
]
},
{
input: "src/angular/index.ts",
output: {
dir: "dist/angular",
format: "esm"
},
plugins: [
typescript(),
generateDtsBundle({
entry: [{ filePath: "src/angular/index.ts" }]
})
]
},
{
input: "src/react/index.ts",
output: {
dir: "dist/react",
format: "esm"
},
plugins: [
typescript(),
generateDtsBundle({
entry: [{ filePath: "src/react/index.ts" }]
})
]
},
{
input: "src/lit/index.ts",
output: {
dir: "dist/lit",
format: "esm"
},
plugins: [
typescript(),
generateDtsBundle({
entry: [{ filePath: "src/lit/index.ts" }]
})
]
},
{
input: "src/assertable.ts",
output: {
format: "esm",
file: "dist/assertable/index.js"
},
plugins: [
typescript(),
generateDtsBundle({
entry: [{ filePath: "src/assertable.ts" }]
})
]
},
{
input: "src/renderer/index.ts",
output: {
dir: "dist/renderer",
format: "esm"
},
plugins: [
typescript(),
generateDtsBundle({
entry: [{ filePath: "src/renderer/index.ts" }]
})
]
}
];