We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
required
1 parent eadd898 commit 4d515bbCopy full SHA for 4d515bb
packages/angular_devkit/build_angular/src/tools/esbuild/bundler-context.ts
@@ -331,7 +331,9 @@ export class BundlerContext {
331
for (const importData of imports) {
332
if (
333
!importData.external ||
334
- (importData.kind !== 'import-statement' && importData.kind !== 'dynamic-import')
+ (importData.kind !== 'import-statement' &&
335
+ importData.kind !== 'dynamic-import' &&
336
+ importData.kind !== 'require-call')
337
) {
338
continue;
339
}
0 commit comments