Webpack tree shaking 仍然捆绑未使用的导出

Webpack tree shaking still bundles unused exports

我正在尝试测试 Webpack 的 tree shaking 功能,但它似乎不起作用。

这是我的文件:

import { good } from './exports';
console.log(good);
export const good = 'good';
export const secret = 'iamasecret';
{}
import { Configuration } from 'webpack';
import  * as TerserPlugin from "terser-webpack-plugin";
const config: Configuration = {
    mode: 'production',
    entry: './index.ts',
    module: {
        rules: [
          {
            test: /\.tsx?$/,
            use: 'ts-loader',
            exclude: /node_modules/,
          },
        ],
      },
      resolve: {
        extensions: [ '.tsx', '.ts', '.js' ]
      },
      optimization: {
        usedExports: true,
        minimizer: [new TerserPlugin()],
      }
}
export default config;
{
  "name": "webpacktest",
  "version": "1.0.0",
  "description": "",
  "main": "index.ts",
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1"
  },
  "author": "",
  "license": "ISC",
  "devDependencies": {
    "@types/terser-webpack-plugin": "^2.2.0",
    "@types/webpack": "^4.41.11",
    "terser-webpack-plugin": "^2.3.5",
    "ts-loader": "^7.0.0",
    "ts-node": "^8.8.2",
    "typescript": "^3.8.3",
    "webpack": "^4.42.1",
    "webpack-cli": "^3.3.11"
  },
  "sideEffects": false
}

当我 运行 npx webpack 时,它会将文件捆绑到 dist/main.js。当我打开那个文件时,秘密字符串就在那里,尽管它是一个未使用的导出文件。有什么办法可以阻止它被包含在最终的捆绑包中吗?

好的,所以我明白了。我需要安装包 @babel/core@babel/preset-envbabel-loader 作为开发依赖项,并将用于处理 TypeScript 文件的 Webpack 配置规则更改为:

    {
        test: /\.tsx?$/,
        use: ['babel-loader','ts-loader'],
        exclude: /node_modules/,
    },

接下来,我创建了一个包含以下内容的 .babelrc 文件:

{
    "presets": [
        [
            "@babel/preset-env",
            {
                "modules": false
            }
        ]
    ]
}

最后,我 changed/added 在 compilerOptions 下我的 tsconfig.json 中添加以下行:

"module": "es6",
"moduleResolution": "node",

使用 babel-loader,设置 .babelrc 配置,并使用 "module": "es6",允许我的 TypeScript 代码进行 tree-shaking。 "moduleResolution": "node" 修复了我收到某些模块无法解析的错误的问题。