Added missing path normalization for typeshedPath setting.

This commit is contained in:
Eric Traut 2019-11-23 16:04:55 -08:00
parent a14ffc0a32
commit 3389ca388b

View File

@ -692,7 +692,7 @@ export class ConfigOptions {
if (typeof configObj.typeshedPath !== 'string') {
console.log(`Config "typeshedPath" field must contain a string.`);
} else {
this.typeshedPath = configObj.typeshedPath;
this.typeshedPath = normalizePath(combinePaths(this.projectRoot, configObj.typeshedPath));
}
}