-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathrollup.config.js
49 lines (47 loc) · 1.36 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
import { createRequire } from "node:module";
import path from "node:path";
import { fileURLToPath } from "node:url";
import alias from "@rollup/plugin-alias";
import peerDepsExternal from "rollup-plugin-peer-deps-external";
import typescript from "rollup-plugin-typescript2";
import packageJson from "./package.json" with { type: "json" };
const __dirname = path.dirname(fileURLToPath(import.meta.url));
const require = createRequire(import.meta.url);
const tspCompiler = require("ts-patch/compiler");
export default {
input: "src/index.ts",
output: [
{
file: packageJson.main,
format: "esm",
sourcemap: true,
},
],
plugins: [
peerDepsExternal(),
alias({
entries: {
"~": path.resolve(__dirname, "src"),
},
}),
typescript({
tsconfig: "tsconfig.build.json",
useTsconfigDeclarationDir: true,
clean: true,
// Resolve path alias in declaration files (.d.ts)
// https://github.com/minop1205/react-dnd-treeview/issues/149
// https://github.com/ezolenko/rollup-plugin-typescript2/issues/201#issuecomment-591942905
typescript: tspCompiler,
tsconfigDefaults: {
compilerOptions: {
plugins: [
{
transform: "typescript-transform-paths",
afterDeclarations: true,
},
],
},
},
}),
],
};