From b17b7d761a75d1162d7182125c3f63b100f59f60 Mon Sep 17 00:00:00 2001 From: Abhijeet Prasad Date: Wed, 18 Dec 2024 13:52:04 -0500 Subject: [PATCH] fix(nestjs): Use correct main/module path in package.json --- packages/nestjs/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/nestjs/package.json b/packages/nestjs/package.json index 18f83f3b36f4..0281c7b3da53 100644 --- a/packages/nestjs/package.json +++ b/packages/nestjs/package.json @@ -14,8 +14,8 @@ "/*.d.ts", "/*.d.ts.map" ], - "main": "build/cjs/nestjs/index.js", - "module": "build/esm/nestjs/index.js", + "main": "build/cjs/index.js", + "module": "build/esm/index.js", "types": "build/types/index.d.ts", "exports": { "./package.json": "./package.json",