mirror of
https://github.com/microsoft/vscode.git
synced 2026-07-01 20:17:05 +01:00
6b924c5152
Co-authored-by: Johannes Rieken <jrieken@microsoft.com> Co-authored-by: Alexandru Dima <alexdima@microsoft.com>
14 lines
668 B
TypeScript
14 lines
668 B
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
import { homedir } from 'os';
|
|
import { ExtHostVariableResolverProviderService } from '../common/extHostVariableResolverService.js';
|
|
|
|
export class NodeExtHostVariableResolverProviderService extends ExtHostVariableResolverProviderService {
|
|
protected override homeDir(): string | undefined {
|
|
return homedir();
|
|
}
|
|
}
|