"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const path_1 = require("path");
exports.default = (cwd, configName) => {
const configPath = (0, path_1.join)(cwd, configName);
const config = require(configPath);
return config;
};