Skip to content

Commit

Permalink
fix: do not reference DOM-related imports (#6305)
Browse files Browse the repository at this point in the history
* fix: do not reference DOM-related imports

Closes #6297

* chore: fix typo
  • Loading branch information
cartant committed May 4, 2021
1 parent 6d62574 commit b24818e
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/index.ts
Expand Up @@ -6,11 +6,10 @@
//////////////////////////////////////////////////////////

// tslint:disable: no-reference
/// <reference path="./ajax/index.ts" />
/// <reference path="./fetch/index.ts" />
// It's tempting to add references to all of the deep-import locations, but
// adding references to those that require DOM types breaks Node projects.
/// <reference path="./operators/index.ts" />
/// <reference path="./testing/index.ts" />
/// <reference path="./webSocket/index.ts" />
// tslint:enable: no-reference

/* Observable */
Expand Down

1 comment on commit b24818e

@evelant
Copy link

@evelant evelant commented on b24818e Jun 3, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think this fixed #6297 . I had to downgrade from 7.1.0 to 6.6.7 because 7.1.0 was still pulling in DOM libs resulting in lots of duplicate identifiers on React Native.

Please sign in to comment.