feat(ngcc): support ignoreMissingDependencies in ngcc config (#33192)
Normally, when ngcc encounters a package with missing dependencies while attempting to determine a compilation ordering, it will ignore that package. This commit adds a configuration for a flag to tell ngcc to compile the package anyway, regardless of any missing dependencies. FW-1931 #resolve PR Close #33192
This commit is contained in:

committed by
Matias Niemelä

parent
afcff73be3
commit
4da2dda647
@ -22,6 +22,7 @@ export function makeTestEntryPoint(
|
||||
path: absoluteFrom(`/node_modules/${entryPointName}`),
|
||||
typings: absoluteFrom(`/node_modules/${entryPointName}/index.d.ts`),
|
||||
compiledByAngular: true,
|
||||
ignoreMissingDependencies: false,
|
||||
};
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user