-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.config.js
42 lines (35 loc) · 968 Bytes
/
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
import { createRequire } from "node:module";
import { Package } from "@starbeam-dev/core";
import { defineConfig } from "rollup";
const require = createRequire(new URL(".", import.meta.url));
// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
const ts = /** @type {import("rollup-plugin-ts").default} */ (
require("rollup-plugin-ts")
);
const pkg = Package.at(import.meta);
export default defineConfig({
input: "src/index.ts",
output: [
{
format: "esm",
file: "dist/index.js",
sourcemap: true,
},
],
plugins: [
{
name: "externals",
resolveId(id) {
if (id === "@swc/helpers") return { id, external: false };
if (id.startsWith("node:")) return { id, external: true };
if (new Map(Object.entries(pkg.dependencies)).has(id)) {
return { id, external: true };
}
},
},
ts({
transpiler: "swc",
transpileOnly: true,
}),
],
});