From 6ade4c20635224fab6f13d4a73e4a427a3926419 Mon Sep 17 00:00:00 2001 From: alomardev Date: Mon, 20 Oct 2025 16:38:42 +0300 Subject: [PATCH] fix: add support for @angular/core/types/core.d.ts path --- server/src/session.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/server/src/session.ts b/server/src/session.ts index cfa386a07e..8f4133c757 100644 --- a/server/src/session.ts +++ b/server/src/session.ts @@ -1499,7 +1499,11 @@ function isAngularCore(path: string): boolean { } function isExternalAngularCore(path: string): boolean { - return path.endsWith('@angular/core/core.d.ts') || path.endsWith('@angular/core/index.d.ts'); + return ( + path.endsWith('@angular/core/core.d.ts') || + path.endsWith('@angular/core/index.d.ts') || + path.endsWith('@angular/core/types/core.d.ts') + ); } function isInternalAngularCore(path: string): boolean {