I\'ve always known to import my Observable operators separately to limit the load times. However I\'ve noticed something today that I hope someone could please
Observable
Starting from WebStorm 2016.3 (I believe), you have an option to blacklist certain imports. Editor > Code Style > StypeScript
Editor > Code Style > StypeScript
Do not import exactly from: [rxjs]
Additionally, there is a flag available in tslint to prohibit global imports:
{ "rules": { "import-blacklist": [true, "rxjs"] } }