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
I have a question on style of importing rxjs operators. In Step 9 import './rxjs.operators'; is included in app.module.ts and not needed anywhere else in the project. In Step 10, import './rxjs.operators'; is removed from app.module.ts and included in each file that needs it.
Why not keep the import in app.module.ts as opposed to adding it in each file?
The text was updated successfully, but these errors were encountered:
Thanks for putting together this repo!
I have a question on style of importing rxjs operators. In Step 9
import './rxjs.operators';
is included inapp.module.ts
and not needed anywhere else in the project. In Step 10,import './rxjs.operators';
is removed fromapp.module.ts
and included in each file that needs it.Why not keep the import in
app.module.ts
as opposed to adding it in each file?The text was updated successfully, but these errors were encountered: