Do not import everything from RxJs, instead import just the necessary functionality as follows:
import { Observable } from 'rxjs/Observable';
Do not do the following:
const Rx = require("rxjs");
This simple change improves extension loads times by over 200ms.