We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 27548b5 commit bbb3554Copy full SHA for bbb3554
src/client/common/platform/fs-paths.ts
@@ -1,6 +1,7 @@
1
// Copyright (c) Microsoft Corporation. All rights reserved.
2
// Licensed under the MIT License.
3
4
+import { injectable } from 'inversify';
5
import * as nodepath from 'path';
6
import { getSearchPathEnvVarNames } from '../utils/exec';
7
import { getOSType, OSType } from '../utils/platform';
@@ -96,6 +97,7 @@ interface IRawPaths {
96
97
relative(relpath: string, rootpath: string): string;
98
}
99
100
+@injectable()
101
export class FileSystemPathUtils implements IFileSystemPathUtils {
102
constructor(
103
// the user home directory to use (and expose)
0 commit comments