diff --git a/src/util/config.ts b/src/util/config.ts index 647697ca..c7678e76 100644 --- a/src/util/config.ts +++ b/src/util/config.ts @@ -119,7 +119,7 @@ export function generateContext(context?: BuildContext): BuildContext { setProcessEnvVar(Constants.ENV_TS_CONFIG, tsConfigPathValue); Logger.debug(`tsconfig set to ${tsConfigPathValue}`); - const readConfigJson = resolve(getConfigValue(context, '--readConfigJson', null, Constants.ENV_READ_CONFIG_JSON, Constants.ENV_READ_CONFIG_JSON.toLowerCase(), 'true')); + const readConfigJson = getConfigValue(context, '--readConfigJson', null, Constants.ENV_READ_CONFIG_JSON, Constants.ENV_READ_CONFIG_JSON.toLowerCase(), 'true'); setProcessEnvVar(Constants.ENV_READ_CONFIG_JSON, readConfigJson); Logger.debug(`readConfigJson set to ${readConfigJson}`);