Angular 10 - CommonJS 或 AMD 依赖项可能导致优化救助
Angular 10 - CommonJS or AMD dependencies can cause optimization bailouts
我已经从 angular 7.1.4 更新到 10。
现在我收到像这样的奇怪警告:
WARNING in C:\Sviluppo\Welcome\welcome-cloud-app\src\app\calendario-fasce\mese\mese.component.ts depends on src/app/interfaces/calendar/calendar.component. CommonJS or AMD dependencies can cause optimization bailouts.
For more info see: https://angular.io/guide/build#configuring-commonjs-dependencies
对于像这样的其他警告,我在 angular.json 中添加了相关行,例如:
"allowedCommonJsDependencies": [
"moment",
....
]"
如何解决与我的组件相关的此警告?
删除 TS 别名可能有效。
import { x } from '@auth/auth....' // Warning
...to...
import { x } from '../auth/...' // Warning goes away
参考此link了解更多
我已经从 angular 7.1.4 更新到 10。 现在我收到像这样的奇怪警告:
WARNING in C:\Sviluppo\Welcome\welcome-cloud-app\src\app\calendario-fasce\mese\mese.component.ts depends on src/app/interfaces/calendar/calendar.component. CommonJS or AMD dependencies can cause optimization bailouts. For more info see: https://angular.io/guide/build#configuring-commonjs-dependencies
对于像这样的其他警告,我在 angular.json 中添加了相关行,例如:
"allowedCommonJsDependencies": [
"moment",
....
]"
如何解决与我的组件相关的此警告?
删除 TS 别名可能有效。
import { x } from '@auth/auth....' // Warning
...to...
import { x } from '../auth/...' // Warning goes away
参考此link了解更多