fix(ngcc): add default config for `angular2-highcharts` (#35527)
The package is deprecated (and thus not going to have a new release), but still has ~7000 weekly downloads. Fixes #35399 PR Close #35527
This commit is contained in:
parent
fde89156fa
commit
3cc812711b
|
@ -91,6 +91,19 @@ export const DEFAULT_NGCC_CONFIG: NgccProjectConfig = {
|
||||||
// },
|
// },
|
||||||
// },
|
// },
|
||||||
|
|
||||||
|
// The package does not contain any `.metadata.json` files in the root directory but only inside
|
||||||
|
// `dist/`. Without this config, ngcc does not realize this is a ViewEngine-built Angular
|
||||||
|
// package that needs to be compiled to Ivy.
|
||||||
|
'angular2-highcharts': {
|
||||||
|
entryPoints: {
|
||||||
|
'.': {
|
||||||
|
override: {
|
||||||
|
main: './index.js',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
// The `dist/` directory has a duplicate `package.json` pointing to the same files, which (under
|
// The `dist/` directory has a duplicate `package.json` pointing to the same files, which (under
|
||||||
// certain configurations) can causes ngcc to try to process the files twice and fail.
|
// certain configurations) can causes ngcc to try to process the files twice and fail.
|
||||||
// Ignore the `dist/` entry-point.
|
// Ignore the `dist/` entry-point.
|
||||||
|
|
Loading…
Reference in New Issue