decova-gotcha
Version:
It's my personal trial for automating daunting tasks
29 lines • 1.02 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PoykaConstants = void 0;
const decova_filesystem_1 = require("decova-filesystem");
const tsyringe_1 = require("tsyringe");
const PathMan_1 = require("../Techies/PathMan");
class PoykaConstants {
constructor() {
this.srv_PathMan = tsyringe_1.container.resolve(PathMan_1.PathMan);
this._projectDir = `G:\\_MyProjects\\_MyNodeProjects\\Poyka`;
}
get ProjectDir() {
return new decova_filesystem_1.DirectoryInfo(this._projectDir);
}
get VsCodeDir() {
return this.srv_PathMan.CurrentWorkspace_VsCodeDir;
}
get SnippetsFile() {
return this.srv_PathMan.CurrentWorkspace_DecovaSnippets;
}
get TasksFile() {
return this.srv_PathMan.CurrentWorkspace_Tasks;
}
get SettingsFile() {
return this.srv_PathMan.CurrentWorkspace_Settings;
}
}
exports.PoykaConstants = PoykaConstants;
//# sourceMappingURL=PoykaConstants.js.map