ngcc.config.js 404 B

1234567891011121314
  1. // Prevents false positive warnings from the ng compatibility compiler.
  2. // See https://github.com/angular/angular/pull/35683
  3. module.exports = {
  4. packages: {
  5. '@vendure/admin-ui': {
  6. ignorableDeepImportMatchers: [
  7. /@vendure\/common\//,
  8. /@clr\/icons\//,
  9. /@webcomponents\//,
  10. /graphql\//,
  11. ]
  12. },
  13. }
  14. };