@verdaccio/config
Version:
Verdaccio Configuration
13 lines (12 loc) • 395 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.getDefaultConfig = getDefaultConfig;
var _nodePath = require("node:path");
var _parse = require("../parse");
function getDefaultConfig(fileName = 'default.yaml') {
const file = (0, _nodePath.join)(__dirname, `./${fileName}`);
return (0, _parse.parseConfigFile)(file);
}
//# sourceMappingURL=index.js.map