This repository was archived by the owner on Sep 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig-options.js
35 lines (35 loc) · 1.68 KB
/
config-options.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var Configurations;
(function (Configurations) {
let Protocols;
(function (Protocols) {
Protocols[Protocols["Http"] = 0] = "Http";
Protocols[Protocols["Https"] = 1] = "Https";
})(Protocols = Configurations.Protocols || (Configurations.Protocols = {}));
let Cache;
(function (Cache) {
Cache[Cache["InMemory"] = 0] = "InMemory";
Cache[Cache["HardDrive"] = 1] = "HardDrive";
})(Cache = Configurations.Cache || (Configurations.Cache = {}));
let LogLevels;
(function (LogLevels) {
LogLevels[LogLevels["Error"] = 1] = "Error";
LogLevels[LogLevels["Warning"] = 2] = "Warning";
LogLevels[LogLevels["Normal"] = 3] = "Normal";
LogLevels[LogLevels["Talkative"] = 4] = "Talkative";
LogLevels[LogLevels["TalkativeCluster"] = 5] = "TalkativeCluster";
})(LogLevels = Configurations.LogLevels || (Configurations.LogLevels = {}));
let Deployment;
(function (Deployment) {
Deployment[Deployment["Development"] = 0] = "Development";
Deployment[Deployment["Production"] = 1] = "Production";
})(Deployment = Configurations.Deployment || (Configurations.Deployment = {}));
let FrameOptions;
(function (FrameOptions) {
FrameOptions[FrameOptions["Disabled"] = 0] = "Disabled";
FrameOptions[FrameOptions["Deny"] = 1] = "Deny";
FrameOptions[FrameOptions["SameOrigin"] = 2] = "SameOrigin";
})(FrameOptions = Configurations.FrameOptions || (Configurations.FrameOptions = {}));
})(Configurations = exports.Configurations || (exports.Configurations = {}));
//# sourceMappingURL=config-options.js.map