"use strict"; const path = require("path"); const TOML = require("toml"); const config = require("configly"); module.exports = config( ["./config", path.resolve(__dirname, "../../config/")], { parsers: { toml: TOML.parse } } );