We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
@sentry/[email protected]
5.23.0
After introducing localforage dependency - it breaks typescript projects that don't have lib: ["dom"] in tsconfig.json (e.g Node.js projects).
localforage
lib: ["dom"]
tsconfig.json
Error:
tsc node_modules/localforage/typings/localforage.d.ts:65:43 - error TS2304: Cannot find name 'Blob'. 65 serialize<T>(value: T | ArrayBuffer | Blob, callback: (value: string, error: any) => void): void; ~~~~ node_modules/localforage/typings/localforage.d.ts:67:54 - error TS2304: Cannot find name 'Blob'. 67 deserialize<T>(value: string): T | ArrayBuffer | Blob; ~~~~ Found 2 errors.
The text was updated successfully, but these errors were encountered:
Dupe of #2877
Sorry, something went wrong.
No branches or pull requests
Package + Version
@sentry/[email protected]
Version:
Description
After introducing
localforage
dependency - it breaks typescript projects that don't havelib: ["dom"]
intsconfig.json
(e.g Node.js projects).Error:
The text was updated successfully, but these errors were encountered: