Skip to content

Commit ada3a60

Browse files
committed
refactor(language-server): Ensure language service is enabled in angular repo
The language service disables if it cannot find angular core in the project files. This updates the lookup to work for the angular/angular repo which runs against the uncompiled sources.
1 parent 0aa2aa5 commit ada3a60

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

server/src/session.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -1367,7 +1367,10 @@ function isExternalAngularCore(path: string): boolean {
13671367
}
13681368

13691369
function isInternalAngularCore(path: string): boolean {
1370-
return path.endsWith('angular2/rc/packages/core/index.d.ts');
1370+
// path in g3
1371+
return path.endsWith('angular2/rc/packages/core/index.d.ts') ||
1372+
// angular/angular repository direct sources
1373+
path.indexOf('angular/packages/core/src') !== -1;
13711374
}
13721375

13731376
function isTypeScriptFile(path: string): boolean {

0 commit comments

Comments
 (0)