You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The problem seems to be that the index.js file in the root does require('./lib') and that tries to locate ./lib/lib.js with some bundlers. Switching to './lib/index' seems to solve the issue according to this comment: ReactiveX/rxjs#1769 (comment)
The text was updated successfully, but these errors were encountered:
This was brought up here: ReactiveX/rxjs#1769 and also evidenced by a PR here ReactiveX/rxjs#1766
The problem seems to be that the
index.js
file in the root doesrequire('./lib')
and that tries to locate./lib/lib.js
with some bundlers. Switching to'./lib/index'
seems to solve the issue according to this comment: ReactiveX/rxjs#1769 (comment)The text was updated successfully, but these errors were encountered: