File tree 1 file changed +10
-14
lines changed 1 file changed +10
-14
lines changed Original file line number Diff line number Diff line change @@ -4,16 +4,14 @@ import { ExtraErrorData as ExtraErrorDataIntegration } from "@sentry/integration
4
4
5
5
Sentry .init ({
6
6
dsn: " ___PUBLIC_DSN___" ,
7
- integrations: [new ExtraErrorDataIntegration (
8
- {
7
+ integrations: [
8
+ new ExtraErrorDataIntegration ( {
9
9
// Limit of how deep the object serializer should go. Anything deeper than limit will
10
10
// be replaced with standard Node.js REPL notation of [Object], [Array], [Function] or
11
11
// a primitive value. Defaults to 3.
12
- // When changing this value, make sure to update `normalizeDepth` of the whole SDK
13
- // to `depth + 1` in order to get it serialized properly - https://docs.sentry.io/platforms/javascript/configuration/options/#normalize-depth
14
- depth: number;
15
- }
16
- )],
12
+ depth: number,
13
+ }),
14
+ ],
17
15
});
18
16
```
19
17
@@ -32,15 +30,13 @@ Sentry.init({
32
30
33
31
Sentry .init ({
34
32
dsn: " ___PUBLIC_DSN___" ,
35
- integrations: [new Sentry.Integrations.ExtraErrorData (
36
- {
33
+ integrations: [
34
+ new Sentry.Integrations.ExtraErrorData ( {
37
35
// Limit of how deep the object serializer should go. Anything deeper than limit will
38
36
// be replaced with standard Node.js REPL notation of [Object], [Array], [Function] or
39
37
// a primitive value. Defaults to 3.
40
- // When changing this value, make sure to update `normalizeDepth` of the whole SDK
41
- // to `depth + 1` in order to get it serialized properly - https://docs.sentry.io/platforms/javascript/configuration/options/#normalize-depth
42
- depth: number;
43
- }
44
- )],
38
+ depth: number,
39
+ })
40
+ ],
45
41
});
46
42
```
You can’t perform that action at this time.
0 commit comments