We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 85d2225 commit bc076caCopy full SHA for bc076ca
1 file changed
packages/server/src/vscode/bootstrapFork.ts
@@ -22,7 +22,7 @@ const requireFilesystemModule = (id: string, builtInExtensionsDir: string): any
22
const customMod = new mod.Module(id);
23
customMod.filename = id;
24
// tslint:disable-next-line:no-any
25
- customMod.paths = [(<any>mod)._nodeModulePaths(path.dirname(id)), path.join(__dirname, "../../../../lib/vscode/node_modules")];
+ customMod.paths = (<any>mod)._nodeModulePaths(path.dirname(id));
26
27
if (id.startsWith(builtInExtensionsDir)) {
28
customMod.loaded = true;
0 commit comments