Ckeditor5-angular: Warning: Entry point '@ckeditor/ckeditor5-angular' contains deep imports into xxx

Created on 27 May 2020  路  2Comments  路  Source: ckeditor/ckeditor5-angular

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 ......

solved

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_

module.exports = {
  packages: {
    '@ckeditor/ckeditor5-angular': {
      ignorableDeepImportMatchers: [
        /@ckeditor\//
      ]
    },
  }
};

for more info look here.

All 2 comments

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 :)

Was this page helpful?
0 / 5 - 0 ratings