Note: If you use the Angular-Meteor tutorial to create a Socially application and you use an integrated development environment (IDE) like WebStorm , which can automatically compile TypeScript into JavaScript, my answer will probably help you solve this problem.
I got this error without overriding the collection. Later I found out that my IDE (WebStorm 2016.1) caused duplicates because it automatically compiled TypeScript into JavaScript, although Meteor handles this work for us. Fortunately, I got rid of this error by simply disabling the TypeScript compiler in WebStorm and deleting the compiler output files.
So, if WebStorm asks you if you want to compile TypeScript into JavaScript, say No !

If you have already mixed up your settings, go to WebStorm → Settings → Languages and Frames → TypeScript and uncheck the box “Enable TypeScript Compiler :

After that, delete the output files of the TypeScript compiler:

Your application should now work again. Happy coding!
source share