Utility for interacting with susyknot-config.js files
const SusyknotConfig = require("susyknot-config");
const newConfig = SusyknotConfig.default();
const customConfig = new SusyknotConfig("/susyknotDirPath", "/currentWorkingDirPath", networkObj);
// find config file & return new SusyknotConfig object with config file settings (cwd)
const susyknotConfig = SusyknotConfig.detect();
// find config file & return new SusyknotConfig object from custom working dir
const susyknotConfig = SusyknotConfig.detect({ workingDirectory: "./some/Path" });
// find & return new SusyknotConfig object from custom named config
const customSusyknotConfig = SusyknotConfig.detect({}, "./customConfig.js");