Original question:JavaScript - Does the use of namespace imports have an effect on a module's treeshake-ability?
Assume that we are using ES6 module system. According to the docs, when we use an * as Alias import, we are taking all of the exports from the file and containing them inside of an object of the alias's name.
I am wondering if this has any impact on the tree-shakeability of the imported module?
If so, are named and default imports better in that regard?