Skip to content

Commit

Permalink
chore: fix build config
Browse files Browse the repository at this point in the history
  • Loading branch information
Mister-Hope committed Aug 25, 2023
1 parent 5764d01 commit d2a3208
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion rollup.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,13 @@ export default [
{ file: "./dist/node.d.cts", format: "esm" },
{ file: "./dist/node.d.mts", format: "esm" },
],
plugins: [dts()],
plugins: [
dts({
compilerOptions: {
moduleResolution: 99,
},
}),
],
external: ["node:crypto"],
},
];

0 comments on commit d2a3208

Please sign in to comment.