gpt4 book ai didi

javascript - 在 Webpack 3 中禁用 tree-shaking

转载 作者:行者123 更新时间:2023-11-30 11:22:44 25 4
gpt4 key购买 nike

如何在 Webpack 3 中禁用 tree-shaking?

我正在尝试在完全原生的 Web 组件中构建一个 Web 应用程序,我依靠克隆和附加带有 innerHTML 的模板元素来呈现其中的任何子组件。然而,由于 webpack 没有看到我在 javascript 中使用子组件,它没有捆绑适当的文件,因此从未定义 web 组件。

import MyComponent from './my-component';
let template = document.createElement('template');
template.innerHTML = `
<h1>My Web App</h1>
<my-component></my-component>
`;

export default class WebApp extends HTMLElement {
constructor () {
super();
let shadowRoot = this.attachShadow({mode: 'open'});
shadowRoot.appendChild(template.content.cloneNode(true));
}
}

如果我包含一个像 let myComponent = new MyComponent(); 这样的电话,我可以看到 webpack 最终捆绑了导入,所以我相信这是因为组件是在模板字符串中定义的。

谢谢。

最佳答案

原来不是 Webpack 删除了 bundle ,而是 typescript 编译器。 Typescript 会“省略”导入,因为它没有被使用,但是将导入语句从 import MyComponent from './my-component'; 更改为 import './my-component '; 强制 typescript 包含它。

谢谢@cartant!

关于javascript - 在 Webpack 3 中禁用 tree-shaking,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49185581/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com