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.
1 parent 156e723 commit fea412bCopy full SHA for fea412b
server/src/session.ts
@@ -83,11 +83,12 @@ export class Session {
83
break;
84
case ts.server.ProjectLoadingFinishEvent: {
85
const {project} = event.data;
86
- if (!isAngularProject(project)) {
87
- project.disableLanguageService();
88
- this.connection.console.info(`Disabling language service for ${
89
- project.projectName} because it is not an Angular project.`);
90
- }
+ // https://github.com/angular/vscode-ng-language-service/issues/416
+ // if (!isAngularProject(project)) {
+ // project.disableLanguageService();
+ // this.connection.console.info(`Disabling language service for ${
+ // project.projectName} because it is not an Angular project.`);
91
+ // }
92
this.connection.sendNotification(
93
projectLoadingNotification.finish, event.data.project.projectName);
94
0 commit comments