Commit c10712ec authored by malkoG's avatar malkoG
Browse files

Fix runtime error for nestjs

parent a003c21d
Loading
Loading
Loading
Loading
+7 −4
Original line number Diff line number Diff line
@@ -26,15 +26,18 @@
    "https://opencollective.com/fedify",
    "https://github.com/sponsors/dahlia"
  ],
  "type": "module",
  "module": "./dist/index.js",
  "main": "./dist/index.js",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "import": {
      "require": {
        "types": "./dist/index.d.ts",
        "import": "./dist/index.js",
        "default": "./dist/index.js"
      },
      "import": {
        "types": "./dist/index.d.mts",
        "default": "./dist/index.mjs"
      }
    },
    "./package.json": "./package.json"
+1 −0
Original line number Diff line number Diff line
@@ -4,4 +4,5 @@ export default defineConfig({
  entry: ["index.ts"],
  dts: true,
  platform: "node",
  format: ["commonjs", "esm"],
});