-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathrollup.config.js
62 lines (58 loc) · 1.95 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
import resolve from "@rollup/plugin-node-resolve";
import commonjs from "@rollup/plugin-commonjs";
import sourceMaps from "rollup-plugin-sourcemaps";
import { babel } from "@rollup/plugin-babel";
import json from "@rollup/plugin-json";
import replace from "@rollup/plugin-replace";
import typescript from "rollup-plugin-typescript2";
import dts from "rollup-plugin-dts";
import pkg from "./package.json";
const extensions = [".ts"];
/**
* @type {import('rollup').RollupOptions}
*/
const config = [
{
input: "./src/index.ts",
output: [
{ file: pkg.main, format: "cjs", sourcemap: true },
{ file: pkg.module, format: "es", sourcemap: true },
],
external: ["tslib", "keyborg"],
plugins: [
typescript({
useTsconfigDeclarationDir: true,
tsconfig: "src/tsconfig.lib.json",
tsconfigOverride: {
compilerOptions: {
// https://github.com/ezolenko/rollup-plugin-typescript2/issues/268
emitDeclarationOnly: false,
stripInternal: true,
},
},
}),
babel({
babelHelpers: "bundled",
extensions,
exclude: "node_modules/**",
}),
json(),
replace({
preventAssignment: true,
__DEV__: `process.env.NODE_ENV === 'development'`,
__VERSION__: JSON.stringify(pkg.version),
}),
commonjs({ extensions }),
resolve({ extensions, mainFields: ["module", "main"] }),
sourceMaps(),
],
},
{
input: "./dist/dts/index.d.ts",
output: [{ file: "dist/index.d.ts", format: "es" }],
// rolls up all dts files into a single dts file
// so that internal types don't leak
plugins: [dts()],
},
];
export default config;