Skip to content

Commit 2999264

Browse files
committed
update monaco vfs integration
1 parent d6defbb commit 2999264

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Frontend/src/lib/integration/vfs-monaco-integration.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,12 @@ export class VFSMonacoIntegration {
106106
this.disposables.push(codeActionDisposable);
107107
}
108108

109+
// Hover provider for unresolved imports
110+
if (this.diagnosticsProvider) {
111+
const hoverDisposable = this.diagnosticsProvider.setupHoverProvider();
112+
this.disposables.push(hoverDisposable);
113+
}
114+
109115
// Setup import path validation
110116
this.setupImportValidation();
111117
}

0 commit comments

Comments
 (0)