-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrollup.config.js
62 lines (59 loc) · 1.75 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 { defineConfig } from "rollup";
import babel from "@rollup/plugin-babel";
import nodeResolve from "@rollup/plugin-node-resolve";
import commonjs from "@rollup/plugin-commonjs";
import { existsSync, rmSync } from "node:fs";
import ts from "typescript";
rmSync("dist", {
force: true,
recursive: true
});
export default defineConfig({
input: "src/index.ts",
output: [
{
file: "dist/esm/index.js",
format: "esm"
},
{
file: "dist/cjs/index.cjs",
format: "cjs"
}
],
plugins: [
babel({
extensions: [".js", ".ts"],
babelHelpers: "inline",
presets: [
"@babel/preset-typescript",
["@babel/preset-env", { bugfixes: true, targets: { node: 18 } }]
]
}),
nodeResolve({
extensions: [".js", ".ts"]
}),
commonjs({
extensions: [".js", ".ts"]
}),
{
name: "ts",
buildEnd() {
if (existsSync("dist/types")) {
return;
}
ts.createProgram(["src/index.ts"], {
target: ts.ScriptTarget.ESNext,
module: ts.ModuleKind.ESNext,
moduleResolution: ts.ModuleResolutionKind.Bundler,
allowSyntheticDefaultImports: true,
esModuleInterop: true,
rootDir: "src",
declarationDir: "dist/types",
declaration: true,
emitDeclarationOnly: true
}).emit();
}
}
],
external: ["undici"]
});