@kwiz/common
Version:
KWIZ common utilities and helpers for M365 platform
21 lines • 726 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.CommonConfig = void 0;
const objects_1 = require("./helpers/objects");
/** Entry point must call config to initialize this. Always access .i property to get the latest project data */
class CommonConfig {
constructor() { }
static get i() {
return (0, objects_1.getGlobal)('@kwiz/common/configInfo', {
BuildNumber: "unset",
ReleaseStatus: "npm",
IsLocalDev: false,
IsFastRing: false,
IsProduction: true,
ProjectName: "[kw]",
_configured: false
});
}
}
exports.CommonConfig = CommonConfig;
//# sourceMappingURL=common-config.js.map