File tree 2 files changed +2
-6
lines changed
2 files changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -19,13 +19,9 @@ const baseBundleConfig = makeBaseBundleConfig({
19
19
__SENTRY_REPLAY_VERSION__ : JSON . stringify ( pkg . version ) ,
20
20
} ,
21
21
} ) ,
22
+ // lodash.debounce is a CJS module, so we need to convert it to ESM first
22
23
commonjs ( ) ,
23
24
] ,
24
- output : {
25
- // set exports to 'named' or 'auto' so that rollup doesn't warn about
26
- // the default export in `worker/worker.js`
27
- exports : 'auto' ,
28
- } ,
29
25
} ,
30
26
} ) ;
31
27
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ import { deleteSession } from './session/deleteSession';
23
23
import { getSession } from './session/getSession' ;
24
24
import { saveSession } from './session/saveSession' ;
25
25
import { Session } from './session/Session' ;
26
- import {
26
+ import type {
27
27
AllPerformanceEntry ,
28
28
InstrumentationTypeBreadcrumb ,
29
29
InstrumentationTypeSpan ,
You can’t perform that action at this time.
0 commit comments