Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -719,6 +719,11 @@ function migrateImportDeclaration(node: ts.ImportDeclaration, sourceFile: ts.Sou
const importPath = node.moduleSpecifier.text;
const namedBindings = node.importClause.namedBindings;

// Only process main entry imports (not sub-entry points which igNamedImportFilter will allow)
if (importPath !== IG_PACKAGE_NAME && importPath !== IG_LICENSED_PACKAGE_NAME) {
return null;
}

// Group imports by entry point
const entryPointGroups = new Map<string, string[]>();

Expand Down
Loading