Fixed the FS path issue on Windows.

Signed-off-by: Akos Kitta <kittaakos@typefox.io>
This commit is contained in:
Akos Kitta
2019-08-27 18:27:12 +02:00
parent 41c603937c
commit 9ae721292d
6 changed files with 35 additions and 24 deletions

View File

@@ -1,4 +1,3 @@
export const ConfigServicePath = '/services/config-service';
export const ConfigService = Symbol('ConfigService');
@@ -7,6 +6,6 @@ export interface ConfigService {
}
export interface Config {
sketchDirPath: string;
dataDirPath: string;
}
sketchDirUri: string;
dataDirUri: string;
}