14 lines
362 B
TypeScript
14 lines
362 B
TypeScript
|
import * as paths from "./paths";
|
||
|
import * as environment from "vs/platform/environment/node/environmentService";
|
||
|
|
||
|
export class EnvironmentService extends environment.EnvironmentService {
|
||
|
|
||
|
public get sharedIPCHandle(): string {
|
||
|
return paths._paths.socketPath || super.sharedIPCHandle;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
// @ts-ignore
|
||
|
environment.EnvironmentService = EnvironmentService;
|