export function replaceConfig(replacePropertyValues: IReplace): IReplace {
  if (!checkIsObjectLike(replacePropertyValues)) {
    throw new TypeError("'Replace' should be an object");
  }
  return replacePropertyValues;