diff --git a/packages/angular/package.json b/packages/angular/package.json index dca619bd346d..ecdf52d8df10 100644 --- a/packages/angular/package.json +++ b/packages/angular/package.json @@ -11,7 +11,7 @@ }, "main": "dist/index.js", "module": "esm/index.js", - "types": "build/types/index.d.ts", + "types": "dist/index.d.ts", "publishConfig": { "access": "public" }, diff --git a/packages/browser/package.json b/packages/browser/package.json index aba2c1c54783..636f4374d0f7 100644 --- a/packages/browser/package.json +++ b/packages/browser/package.json @@ -11,7 +11,7 @@ }, "main": "build/dist/index.js", "module": "build/esm/index.js", - "types": "build/types/index.d.ts", + "types": "build/dist/index.d.ts", "publishConfig": { "access": "public" }, diff --git a/packages/core/package.json b/packages/core/package.json index f1189dd7127f..218b736e1003 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -11,7 +11,7 @@ }, "main": "dist/index.js", "module": "esm/index.js", - "types": "build/types/index.d.ts", + "types": "dist/index.d.ts", "publishConfig": { "access": "public" }, diff --git a/packages/gatsby/package.json b/packages/gatsby/package.json index b1575d6eb2fc..e4f6093aeeec 100644 --- a/packages/gatsby/package.json +++ b/packages/gatsby/package.json @@ -15,7 +15,7 @@ }, "main": "dist/index.js", "module": "esm/index.js", - "types": "build/types/index.d.ts", + "types": "dist/index.d.ts", "files": [ "/dist", "/esm", diff --git a/packages/hub/package.json b/packages/hub/package.json index 2df55cdca833..0f5d20c3b2ac 100644 --- a/packages/hub/package.json +++ b/packages/hub/package.json @@ -11,7 +11,7 @@ }, "main": "dist/index.js", "module": "esm/index.js", - "types": "build/types/index.d.ts", + "types": "dist/index.d.ts", "publishConfig": { "access": "public" }, diff --git a/packages/integrations/package.json b/packages/integrations/package.json index 64f8944f6725..af8293c5146a 100644 --- a/packages/integrations/package.json +++ b/packages/integrations/package.json @@ -14,7 +14,7 @@ }, "main": "dist/index.js", "module": "esm/index.js", - "types": "build/types/index.d.ts", + "types": "dist/index.d.ts", "dependencies": { "@sentry/types": "6.19.0", "@sentry/utils": "6.19.0", diff --git a/packages/minimal/package.json b/packages/minimal/package.json index 16652bc5fa77..2005b73294a6 100644 --- a/packages/minimal/package.json +++ b/packages/minimal/package.json @@ -11,7 +11,7 @@ }, "main": "dist/index.js", "module": "esm/index.js", - "types": "build/types/index.d.ts", + "types": "dist/index.d.ts", "publishConfig": { "access": "public" }, diff --git a/packages/nextjs/package.json b/packages/nextjs/package.json index 0842e7fc9a53..2da519dcb871 100644 --- a/packages/nextjs/package.json +++ b/packages/nextjs/package.json @@ -12,7 +12,7 @@ "main": "./dist/index.server.js", "module": "./esm/index.server.js", "browser": "./esm/index.client.js", - "types": "./build/types/index.server.d.ts", + "types": "./esm/index.server.d.ts", "publishConfig": { "access": "public" }, diff --git a/packages/node/package.json b/packages/node/package.json index dc745d39c995..717686715848 100644 --- a/packages/node/package.json +++ b/packages/node/package.json @@ -11,7 +11,7 @@ }, "main": "dist/index.js", "module": "esm/index.js", - "types": "build/types/index.d.ts", + "types": "dist/index.d.ts", "publishConfig": { "access": "public" }, diff --git a/packages/react/package.json b/packages/react/package.json index d5b10eabc331..945e3107dbe9 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -11,7 +11,7 @@ }, "main": "dist/index.js", "module": "esm/index.js", - "types": "build/types/index.d.ts", + "types": "dist/index.d.ts", "publishConfig": { "access": "public" }, diff --git a/packages/serverless/package.json b/packages/serverless/package.json index 39a6f84969d8..1f9b6bf0f46f 100644 --- a/packages/serverless/package.json +++ b/packages/serverless/package.json @@ -11,7 +11,7 @@ }, "main": "dist/index.js", "module": "esm/index.js", - "types": "build/types/index.d.ts", + "types": "dist/index.d.ts", "publishConfig": { "access": "public" }, diff --git a/packages/tracing/package.json b/packages/tracing/package.json index 300a45d43bfc..d5630cfa2d0c 100644 --- a/packages/tracing/package.json +++ b/packages/tracing/package.json @@ -11,7 +11,7 @@ }, "main": "dist/index.js", "module": "esm/index.js", - "types": "build/types/index.d.ts", + "types": "dist/index.d.ts", "publishConfig": { "access": "public" }, diff --git a/packages/types/package.json b/packages/types/package.json index 812fe147f59e..982d066f73ac 100644 --- a/packages/types/package.json +++ b/packages/types/package.json @@ -11,7 +11,7 @@ }, "main": "dist/index.js", "module": "esm/index.js", - "types": "build/types/index.d.ts", + "types": "dist/index.d.ts", "publishConfig": { "access": "public" }, diff --git a/packages/utils/package.json b/packages/utils/package.json index a44dd8e9b4ad..774555cbda69 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -11,7 +11,7 @@ }, "main": "dist/index.js", "module": "esm/index.js", - "types": "build/types/index.d.ts", + "types": "dist/index.d.ts", "publishConfig": { "access": "public" }, diff --git a/packages/vue/package.json b/packages/vue/package.json index be0d0b60cb4b..d1f592325598 100644 --- a/packages/vue/package.json +++ b/packages/vue/package.json @@ -11,7 +11,7 @@ }, "main": "dist/index.js", "module": "esm/index.js", - "types": "build/types/index.d.ts", + "types": "dist/index.d.ts", "publishConfig": { "access": "public" }, diff --git a/packages/wasm/package.json b/packages/wasm/package.json index fcc0841d21c9..4b179a53479e 100644 --- a/packages/wasm/package.json +++ b/packages/wasm/package.json @@ -11,7 +11,7 @@ }, "main": "dist/index.js", "module": "esm/index.js", - "types": "build/types/index.d.ts", + "types": "dist/index.d.ts", "publishConfig": { "access": "public" },