We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d6defbb commit 2999264Copy full SHA for 2999264
Frontend/src/lib/integration/vfs-monaco-integration.ts
@@ -106,6 +106,12 @@ export class VFSMonacoIntegration {
106
this.disposables.push(codeActionDisposable);
107
}
108
109
+ // Hover provider for unresolved imports
110
+ if (this.diagnosticsProvider) {
111
+ const hoverDisposable = this.diagnosticsProvider.setupHoverProvider();
112
+ this.disposables.push(hoverDisposable);
113
+ }
114
+
115
// Setup import path validation
116
this.setupImportValidation();
117
0 commit comments