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
A list of strings representing the names of components to ignore. The plugin will not perform apply `data-sentry` annotations on the DOM element for these components.
56
+
A list of strings representing the names of components to ignore. The plugin will not apply `data-sentry` annotations on the DOM element for these components.
Copy file name to clipboardExpand all lines: packages/bundler-plugin-core/src/types.ts
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -320,12 +320,12 @@ export interface Options {
320
320
*/
321
321
enabled?: boolean;
322
322
/**
323
-
* A list of strings representing the names of components to ignore. The plugin will not perform any annotations on these components
323
+
* A list of strings representing the names of components to ignore. The plugin will not apply `data-sentry` annotations on the DOM element for these components.
324
324
*/
325
325
ignoreComponents?: string[];
326
326
// TODO: Support this option in the future
327
327
/**
328
-
* A list of strings representing local paths to files to ignore. The plugin will not perform any annotations on components in these files
328
+
* A list of strings representing local paths to files to ignore. The plugin will not apply `data-sentry` annotations on components in these files
0 commit comments