diff --git a/packages/tracing/package.json b/packages/tracing/package.json index 6187925a799e..24870fadcdd3 100644 --- a/packages/tracing/package.json +++ b/packages/tracing/package.json @@ -12,36 +12,6 @@ "main": "build/npm/cjs/index.js", "module": "build/npm/esm/index.js", "types": "build/npm/types/index.d.ts", - "exports": { - ".": { - "import": "./build/npm/esm/index.js", - "require": "./build/npm/cjs/index.js", - "types": "./build/npm/types/index.d.ts" - }, - "./node": { - "import": "./build/npm/esm/node/index.js", - "require": "./build/npm/cjs/node/index.js", - "types": "./build/npm/types/node/index.d.ts" - }, - "./browser": { - "import": "./build/npm/esm/browser/index.js", - "require": "./build/npm/cjs/browser/index.js", - "types": "./build/npm/types/browser/index.d.ts" - } - }, - "typesVersions": { - "*": { - "*": [ - "./build/npm/types/index.d.ts" - ], - "node": [ - "./build/npm/types/node/index.d.ts" - ], - "browser": [ - "./build/npm/types/browser/index.d.ts" - ] - } - }, "publishConfig": { "access": "public" }, diff --git a/packages/tracing/rollup.npm.config.js b/packages/tracing/rollup.npm.config.js index a7588e2a9538..4ffa8b9396d8 100644 --- a/packages/tracing/rollup.npm.config.js +++ b/packages/tracing/rollup.npm.config.js @@ -2,7 +2,6 @@ import { makeBaseNPMConfig, makeNPMConfigVariants } from '../../rollup/index.js' export default makeNPMConfigVariants( makeBaseNPMConfig({ - entrypoints: ['src/browser/index.ts', 'src/node/index.ts', 'src/index.ts'], // packages with bundles have a different build directory structure hasBundles: true, }),