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 458efc8 commit 08a5aecCopy full SHA for 08a5aec
server/src/session.ts
@@ -1111,9 +1111,9 @@ export class Session {
1111
success = true;
1112
} catch (e) {
1113
this.error(
1114
- `Failed to run ngcc for ${configFilePath}:\n` +
1115
- ` ${e.message}\n` +
1116
- ` Language service will remain disabled.`);
+ `Failed to run ngcc for ${
+ configFilePath}, language service may not operate correctly:\n` +
+ ` ${e.message}`);
1117
} finally {
1118
this.connection.sendProgress(NgccProgressType, NgccProgressToken, {
1119
done: true,
@@ -1157,4 +1157,4 @@ function isTypeScriptFile(path: string): boolean {
1157
1158
function isExternalTemplate(path: string): boolean {
1159
return !isTypeScriptFile(path);
1160
-}
+}
0 commit comments