You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* If set to `true`, the plugin will attempt to tree-shake (remove) code within the Sentry SDK that is related to tracing and performance monitoring.
258
-
* Note that the success of this depends on tree shaking being enabled in your build tooling.
259
-
*
260
-
* **Notice**: Do not enable this when you're using any performance monitoring-related SDK features (e.g. `Sentry.startTransaction()`).
261
-
*
262
-
* @deprecated This option has been replaced with the `excludeTracing`. Currently, this option is an alias for `excludeTracing` but `excludePerformanceMonitoring` will be removed in the next major version.
263
-
*/
264
-
// TODO(v3): Remove this option
265
-
excludePerformanceMonitoring?: boolean;
266
-
267
232
/**
268
233
* If set to `true`, the plugin will attempt to tree-shake (remove) code within the Sentry SDK that is related to tracing and performance monitoring.
269
234
* Note that the success of this depends on tree shaking being enabled in your build tooling.
@@ -351,7 +316,6 @@ export interface Options {
351
316
*
352
317
* @experimental API that does not follow semantic versioning and may change in any release
353
318
*/
354
-
// TODO(v3): Remove these
355
319
_experiments?: {
356
320
/**
357
321
* If set to true, the plugin will inject an additional `SENTRY_BUILD_INFO` variable.
@@ -360,25 +324,6 @@ export interface Options {
360
324
* Defaults to `false`.
361
325
*/
362
326
injectBuildInformation?: boolean;
363
-
364
-
/**
365
-
* NOTE: This option has been promoted to stable.
366
-
*
367
-
* Metadata that should be associated with the built application.
368
-
*
369
-
* The metadata is serialized and can be looked up at runtime from within the SDK (for example in the `beforeSend`,
370
-
* event processors, or the transport), allowing for custom event filtering logic or routing of events.
371
-
*
372
-
* Metadata can either be passed directly or alternatively a callback can be provided that will be
373
-
* called with the following parameters:
374
-
* - `org`: The organization slug.
375
-
* - `project`: The project slug.
376
-
* - `release`: The release name.
377
-
*
378
-
* @deprecated Use the non-experimental `moduleMetadata` option instead. (Basically just move this option out of `_experiments`)
0 commit comments