"use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = grabDirNames; const path_1 = __importDefault(require("path")); function grabDirNames() { const rootDir = process.cwd(); const syncConfigFileName = "__trsyc.json"; const syncConfigFilePath = path_1.default.join(rootDir, syncConfigFileName); return { rootDir, syncConfigFileName, syncConfigFilePath }; }