In a large-scale application with multiple JavaScript modules, how would you apply tree shaking to reduce the size of the deployed bundle?

  • Use a bundler like Webpack that supports tree shaking.
  • Manually remove unused code from each module.
  • Convert the modules to CommonJS format.
  • Utilize a code minification tool.
Tree shaking involves removing dead code during the bundling process. Webpack, a popular bundler, has built-in support for tree shaking, making it an efficient choice. Manually removing code or changing the module format is not the standard approach for tree shaking. Code minification is related but doesn't specifically address dead code elimination.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *