How to use tree-shaking with webpack 2 and typescript and angular 2?
问题 I have set up webpack 2 with angular and mostly it seems to work. It does not seem though that it does the tree-shaking , since I have an app that does almost nothing, and the vendor.js is still 800+ KB. It seems there is very little information available on how to turn the tree-shaking on, but what I understood that it's automatically turned on for ES6 modules, but does not work for ES5. Is that so? And most importantly: How can I apply tree-shaking to typescript/angular2 with webpack2? 回答1: