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