Skip to content

Commit 7a792f4

Browse files
committed
fix: Add TS dom reference to make sure its in place for compilation
1 parent 3515958 commit 7a792f4

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@
44

55
- Coming soon...
66

7+
## 5.7.1
8+
9+
- [core] ref: Use the smallest possible interface for our needs - `PromiseLike` (#2273)
10+
- [utils] fix: Add TS dom reference to make sure its in place for compilation (#2274)
11+
712
## 5.7.0
813

914
- [core] ref: Use `Promise` as the interface, but `SyncPromise` as the implementation in all the places we need `thenable` API

packages/utils/src/is.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/// <reference lib="dom" />
2+
13
/**
24
* Checks whether given value's type is one of a few Error or Error-like
35
* {@link isError}.

packages/utils/src/misc.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/// <reference lib="dom" />
2+
13
import { Event, Integration, WrappedFunction } from '@sentry/types';
24

35
import { isString } from './is';

0 commit comments

Comments
 (0)