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 ba13858 commit 0fdc5fbCopy full SHA for 0fdc5fb
server/src/session.ts
@@ -1123,9 +1123,9 @@ export class Session {
1123
success = true;
1124
} catch (e) {
1125
this.error(
1126
- `Failed to run ngcc for ${configFilePath}:\n` +
1127
- ` ${e.message}\n` +
1128
- ` Language service will remain disabled.`);
+ `Failed to run ngcc for ${
+ configFilePath}, language service may not operate correctly:\n` +
+ ` ${e.message}`);
1129
} finally {
1130
this.connection.sendProgress(NgccProgressType, NgccProgressToken, {
1131
done: true,
@@ -1169,4 +1169,4 @@ function isTypeScriptFile(path: string): boolean {
1169
1170
function isExternalTemplate(path: string): boolean {
1171
return !isTypeScriptFile(path);
1172
-}
+}
0 commit comments