/** * Reads the config JSON from the filesystem and returns it as a JS object * compatible with the env package. * * @param {string} configPath The path to the JSON file to read. * * @return {Object} the raw config data. */ export default function readRawConfigFile(configPath: string): Object;