diff --git a/packages/api/package.json b/packages/api/package.json index 06d4977f..6b8a9985 100644 --- a/packages/api/package.json +++ b/packages/api/package.json @@ -5,35 +5,35 @@ "type": "module", "exports": { ".": { - "types": "./dist/index.d.ts", + "types": "./src/index.ts", "default": "./src/index.ts" }, "./root": { - "types": "./dist/root.d.ts", + "types": "./src/root.ts", "default": "./src/root.ts" }, "./trpc": { - "types": "./dist/trpc.d.ts", + "types": "./src/trpc.ts", "default": "./src/trpc.ts" }, "./types": { - "types": "./dist/types.d.ts", + "types": "./src/types/router.types.ts", "default": "./src/types/router.types.ts" }, "./openapi": { - "types": "./dist/openapi.d.ts", + "types": "./src/openapi.ts", "default": "./src/openapi.ts" }, "./utils/rateLimit": { - "types": "./dist/utils/rateLimit.d.ts", + "types": "./src/utils/rateLimit.ts", "default": "./src/utils/rateLimit.ts" }, "./utils/apiLogging": { - "types": "./dist/utils/apiLogging.d.ts", + "types": "./src/utils/apiLogging.ts", "default": "./src/utils/apiLogging.ts" }, "./utils/permissions": { - "types": "./dist/utils/permissions.d.ts", + "types": "./src/utils/permissions.ts", "default": "./src/utils/permissions.ts" } }, diff --git a/packages/db/package.json b/packages/db/package.json index ea4bab54..c83015b9 100644 --- a/packages/db/package.json +++ b/packages/db/package.json @@ -5,27 +5,27 @@ "type": "module", "exports": { ".": { - "types": "./dist/index.d.ts", + "types": "./src/index.ts", "default": "./src/index.ts" }, "./client": { - "types": "./dist/client.d.ts", + "types": "./src/client.ts", "default": "./src/client.ts" }, "./schema": { - "types": "./dist/schema.d.ts", + "types": "./src/schema/index.ts", "default": "./src/schema/index.ts" }, "./types/*": { - "types": "./dist/types/*.d.ts", + "types": "./src/types/*", "default": "./src/types/*" }, "./repository/*": { - "types": "./dist/repository/*.d.ts", + "types": "./src/repository/*.ts", "default": "./src/repository/*.ts" }, "./redis": { - "types": "./dist/redis.d.ts", + "types": "./src/redis.ts", "default": "./src/redis.ts" } }, diff --git a/packages/logger/package.json b/packages/logger/package.json index b2f2c32e..a35d3525 100644 --- a/packages/logger/package.json +++ b/packages/logger/package.json @@ -5,7 +5,7 @@ "type": "module", "exports": { ".": { - "types": "./dist/index.d.ts", + "types": "./src/index.ts", "default": "./src/index.ts" } }, diff --git a/packages/shared/package.json b/packages/shared/package.json index 0d5fdfce..0115b64e 100644 --- a/packages/shared/package.json +++ b/packages/shared/package.json @@ -5,15 +5,15 @@ "type": "module", "exports": { ".": { - "types": "./dist/index.d.ts", + "types": "./src/index.ts", "default": "./src/index.ts" }, "./utils": { - "types": "./dist/utils/index.d.ts", + "types": "./src/utils/index.ts", "default": "./src/utils/index.ts" }, "./constants": { - "types": "./dist/constants/index.d.ts", + "types": "./src/constants/index.ts", "default": "./src/constants/index.ts" } },