-
-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathrollup.config.js
43 lines (41 loc) · 1.05 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
import commonjs from "@rollup/plugin-commonjs";
import json from "@rollup/plugin-json";
import typescript from "@rollup/plugin-typescript";
import autoExternal from "rollup-plugin-auto-external";
import dts from "rollup-plugin-dts";
import packageJSON from "./package.json" assert { type: "json" };
/** @type {import('rollup').RollupOptions[]} */
export default [
{
input: "./src/index.ts",
output: {
file: packageJSON.exports["."].require,
format: "commonjs",
},
plugins: [json(), typescript(), autoExternal()],
},
{
input: "./src/index.ts",
output: {
file: packageJSON.exports["."].import,
format: "module",
},
plugins: [commonjs(), json(), typescript(), autoExternal()],
},
{
input: "./src/index.ts",
output: {
file: packageJSON.exports["."].types["require"],
format: "commonjs",
},
plugins: [commonjs(), dts()],
},
{
input: "./src/index.ts",
output: {
file: packageJSON.exports["."].types["import"],
format: "module",
},
plugins: [dts()],
},
];