Skip to content

Commit

Permalink
fix: Add TS dom reference to make sure its in place for compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilogorek committed Oct 15, 2019
1 parent 3515958 commit 7a792f4
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@

- Coming soon...

## 5.7.1

- [core] ref: Use the smallest possible interface for our needs - `PromiseLike` (#2273)
- [utils] fix: Add TS dom reference to make sure its in place for compilation (#2274)

## 5.7.0

- [core] ref: Use `Promise` as the interface, but `SyncPromise` as the implementation in all the places we need `thenable` API
Expand Down
2 changes: 2 additions & 0 deletions packages/utils/src/is.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/// <reference lib="dom" />

/**
* Checks whether given value's type is one of a few Error or Error-like
* {@link isError}.
Expand Down
2 changes: 2 additions & 0 deletions packages/utils/src/misc.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/// <reference lib="dom" />

import { Event, Integration, WrappedFunction } from '@sentry/types';

import { isString } from './is';
Expand Down

0 comments on commit 7a792f4

Please sign in to comment.