Angular10:CommonJs 和 AMD 依赖项会导致优化救助,hotkeys.js 取决于 'mousetrap'

Angular 10: CommonJs and AMD Dependencies can cause optimization bailouts, hotkeys.js depends on 'mousetrap'

我们在 Angular 10 中收到此构建警告。如何解决这个问题?是否有像 Lodash-es 这样的替代 NPM?

hotkeys.js depends on 'mousetrap'. CommonJs and AMD Dependencies can cause optimization bailouts

Error Message

资源:Upgrading to Angular 10 - Fix CommonJS or AMD dependencies can cause optimization bailouts

如果您愿意为 hotkeys 模块做出贡献,可以将其设为 ECMAScript compatible.

,这可以由您来解决

或者您可以将模块添加到 angular.json 文件中的 allowedCommonJsDependencies,如 official documentation 中所示。

"build": {
  "builder": "@angular-devkit/build-angular:browser",
  "options": {
     "allowedCommonJsDependencies": [
        "lodash"
     ]
     ...
   }
   ...
},

最后,您可以忽略警告,直到有人使该模块与 ECMAScript 兼容,或者使用具有您正在寻找的相同功能的另一个模块。