UNPKG

@villedemontreal/logger

Version:
15 lines 418 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.configs = void 0; const path = require("path"); /** * Configurations for the application. */ class Configs { constructor() { this.root = path.normalize(path.join(__dirname, '..')); this.dataDirPath = path.join(this.root, 'test-data'); } } exports.configs = new Configs(); //# sourceMappingURL=configs.js.map