gpt4 book ai didi

javascript - 错误 : Dependency @types/html2canvas must be explicitly allowed using the "allowedNonPeerDependencies" option

转载 作者:行者123 更新时间:2023-12-04 00:51:06 28 4
gpt4 key购买 nike

我已经安装了html2canvas在我的 Angular 库项目中,当我在生产模式下编译时(运行 ng build --prod 命令),我收到以下错误:

ERROR: Dependency @types/html2canvas must be explicitly allowed usingthe "allowedNonPeerDependencies" option.


我该如何解决?

最佳答案

您可以将库添加到您的 peerDependencies package.json .我强烈推荐使用 peerDependencies策略因为明确地向其他人公开您的库依赖于其他库:

{
...
"scripts": {...},
"peerDependencies": {
...
"@types/html2canvas": "0.0.36",
...
},
}
或者您可以使用 ng-package.json 上的选项:
{
...
"lib": {
"entryFile": "src/public-api.ts"
},
"allowedNonPeerDependencies": [
"@type/html2canvas"
]
...
}

关于javascript - 错误 : Dependency @types/html2canvas must be explicitly allowed using the "allowedNonPeerDependencies" option,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66574531/

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