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 50aac04 commit cb2bf19Copy full SHA for cb2bf19
packages/app/src/app/overmind/effects/vscode/index.ts
@@ -510,7 +510,10 @@ export class VSCodeEffect {
510
setFs(this.sandboxFsSync.create(sandbox));
511
512
if (isFirstLoad) {
513
- this.sandboxFsSync.sync(() => {});
+ this.sandboxFsSync.sync(() => {
514
+ // Once we have synced the fs, reload the TS project, as some new dependencies might have been added
515
+ this.runCommand('typescript.reloadProjects');
516
+ });
517
} else {
518
this.editorApi.extensionService.stopExtensionHost();
519
this.sandboxFsSync.sync(() => {
0 commit comments