I have upgraded to the latest stable version of angular 9.1.9 and i am updating all dependencies but i am still getting this warning message.
Warning: Entry point '@ckeditor/ckeditor5-angular' contains deep imports into ......
I just solved it by adding a ngcc.config.js file to ignore deep imports for @ckeditor/ckeditor5-angular.
_ngcc.config.js_
module.exports = {
packages: {
'@ckeditor/ckeditor5-angular': {
ignorableDeepImportMatchers: [
/@ckeditor\//
]
},
}
};
for more info look here.
That is not solved it is ignored :)
Most helpful comment
I just solved it by adding a ngcc.config.js file to ignore deep imports for @ckeditor/ckeditor5-angular.
_ngcc.config.js_
for more info look here.