From db52c60a22ca0a1f64dd9f7057870aab2709504c Mon Sep 17 00:00:00 2001 From: Ben Goldsworthy Date: Sun, 1 Nov 2020 11:19:22 +0000 Subject: [PATCH] Ignore deep import warnings --- ngcc.config.js | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 ngcc.config.js diff --git a/ngcc.config.js b/ngcc.config.js new file mode 100644 index 0000000..cd53541 --- /dev/null +++ b/ngcc.config.js @@ -0,0 +1,9 @@ +module.exports = { + packages: { + '@agm/markerclusterer': { + ignorableDeepImportMatchers: [ + /@google\//, + ] + } + } +}