Javascript 为什么整个核心js库似乎都与我的Web包设置捆绑在一起?

Javascript 为什么整个核心js库似乎都与我的Web包设置捆绑在一起?,javascript,webpack,babeljs,core-js,Javascript,Webpack,Babeljs,Core Js,我正在使用Babel的Webpack和@Babel/preset env,希望只导入我需要的polyfills。似乎整个库都在安装中,导致了一个大的捆绑包(~250kb) My package.js: { "name": "holidaynewtheme", "version": "0.1", "description": "Starter t

我正在使用Babel的Webpack和
@Babel/preset env
,希望只导入我需要的polyfills。似乎整个库都在安装中,导致了一个大的捆绑包(~250kb)

My package.js:

    {
      "name": "holidaynewtheme",
      "version": "0.1",
      "description": "Starter theme for holidaynewbase",
      "private": true,
      "main": "webpack.config.js",
      "dependencies": {
        "core-js": "^3.6.5",
        "element-closest": "^3.0.2",
        "flickity": "^2.2.1",
        "gsap": "^3.4.2",
        "js-cookie": "^2.2.1",
        "turbolinks": "^5.2.0",
        "vanilla-lazyload": "^17.1.0",
        "whatwg-fetch": "^3.4.0"
      },
      "devDependencies": {
        "@babel/core": "^7.11.0",
        "@babel/plugin-transform-runtime": "^7.8.3",
        "@babel/preset-env": "^7.8.4",
        "@babel/runtime": "^7.8.4",
        "@shopify/theme-cart": "^3.0.3",
        "@shopify/theme-product": "^3.0.3",
        "@shopify/theme-product-form": "^3.0.3",
        "@shopify/themekit": "^1.1.3",
        "autoprefixer": "^9.7.4",
        "babel-loader": "^8.0.6",
        "bluebird": "^3.5.3",
        "copy-webpack-plugin": "^5.1.1",
        "cross-env": "^7.0.2",
        "css-loader": "^3.4.2",
        "eslint": "^6.8.0",
        "file-loader": "^3.0.1",
        "glob": "^7.1.6",
        "html-includes": "^4.3.3",
        "mini-css-extract-plugin": "^0.9.0",
        "modernizr": "^3.6.0",
        "modernizr-loader": "^1.0.1",
        "node-sass": "^4.13.1",
        "postcss-loader": "^3.0.0",
        "pre-commit": "^1.2.2",
        "sass-loader": "^8.0.2",
        "svg-symbols": "^1.0.5",
        "url-loader": "^1.1.2",
        "webpack": "^4.41.6",
        "webpack-bundle-analyzer": "^3.8.0",
        "webpack-cli": "^3.3.11",
        "webpack-shell-plugin-next": "^1.1.5"
      },
      "browserslist": [
        "last 1 version",
        "> 2%",
        "Explorer >= 11"
      ]
    }
My babel.config.json:

            {
                "presets": [
                    [
                        "@babel/preset-env",
                        {
                            useBuiltIns: "entry",
                            debug: true,
                            corejs: "3.6.4"
                        }
                    ]
                ],
                "plugins": [
                    "@babel/plugin-transform-runtime"
                ]
            }
我在我的主要入口点设置了以下导入:

import 'core-js/stable';
import 'regenerator-runtime/runtime';
我正在使用BundleAnalyzerPlugin,只为core js获得250kb的压缩大小:

当我将
browsslist
设置更改为just
Chrome 85
时,不会导入任何形式的core js

当我删除导入行时,也不会导入任何内容。

好的,感觉很愚蠢

我的
webpack.config.js
babel loader
进行了以下配置:

{
    test: /\.js$/,
    exclude: /node_modules/,
    loader: 'babel-loader',
    query: {
      presets: ['@babel/env'],
    }
  }, 
。。。我不太喜欢webpack设置,所以我认为这是在覆盖我的babel.config.json,用于任何
.js

此外,我删除了导入行,并将
useBuiltIns
更改为
usage
,一切都按预期工作


我的
debug:true
在编译webpack时没有导致记录调试信息。现在是了,我的包要小得多。

你能澄清一下你的配置有什么问题吗?我想我也有类似的问题。