Atmosphere packages not working in Meteor & Angular 2 app

I tried to use various packages like to my Meteor + Angular 2 app

import { SimpleSchema } from ‘meteor/aldeed:simple-schema’;
import { ValidatedMethod } from ‘meteor/mdg:validated-method’;
import { DDPRateLimiter } from ‘meteor/ddp-rate-limiter’;
import { _ } from ‘meteor/underscore’;

Meteor app is throwing errors on all these packages. No errors on NPM packages. Any reasons?

Did you also

meteor add aldeed:simple-schema mdg:validated-method ddp-rate-limiter underscore

?

Yes. I added all the Atmosphere packages on the command line

Found the solution finally: https://github.com/meteor/meteor/issues/6177