Make this workaround less terrible

This commit is contained in:
dangered wolf 2023-09-10 10:55:31 -04:00
parent ed1005482a
commit 851ad70ee2
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -662,9 +662,12 @@ const sentryWrapper = async (event: FetchEvent, test = false): Promise<void> =>
allowedHeaders: /(.*)/,
allowedSearchParams: /(.*)/,
},
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore TODO: Figure out why this throws type errors after @sentry/integrations update
integrations: [new RewriteFrames({ root: '/' })],
/* TODO: Figure out what changed between @sentry/integration 7.65.0 and 7.66.0
https://github.com/getsentry/sentry-javascript/compare/7.65.0...7.66.0
which caused types to go apeshit */
// eslint-disable-next-line @typescript-eslint/no-explicit-any
integrations: [new RewriteFrames({ root: '/' }) as any],
/* event includes 'waitUntil', which is essential for Sentry logs to be delivered.
Also includes 'request' -- no need to set it separately. */
release: RELEASE_NAME