@procore/globalization-toolkit 3.5.0 → 3.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/dist/Formatter.types.d.ts +5 -4
- package/dist/Formatter.types.js +5 -1
- package/dist/Formatter.types.js.map +1 -1
- package/dist/FormatterUtils.d.ts +1 -1
- package/dist/FormatterUtils.js +2 -1
- package/dist/FormatterUtils.js.map +1 -1
- package/dist/generateSupportDocsURL/GenerateSupportDocsURL.d.ts +2 -2
- package/dist/generateSupportDocsURL/GenerateSupportDocsURL.js +2 -1
- package/dist/generateSupportDocsURL/GenerateSupportDocsURL.js.map +1 -1
- package/dist/getFallbackLocaleList/GetFallbackLocaleList.d.ts +2 -2
- package/dist/getFallbackLocaleList/GetFallbackLocaleList.js +8 -7
- package/dist/getFallbackLocaleList/GetFallbackLocaleList.js.map +1 -1
- package/dist/getOverrideLocale/GetOverrideLocale.d.ts +2 -2
- package/dist/getOverrideLocale/GetOverrideLocale.js +1 -1
- package/dist/getOverrideLocale/GetOverrideLocale.js.map +1 -1
- package/dist/getTranslationsFromLocale/GetTranslationsFromLocale.d.ts +2 -1
- package/dist/getTranslationsFromLocale/GetTranslationsFromLocale.js.map +1 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +4 -1
- package/dist/index.js.map +1 -1
- package/dist/mapLocaleToTmsSupportedLocale/mapLocaleToTmsSupportedLocale.d.ts +2 -0
- package/dist/mapLocaleToTmsSupportedLocale/mapLocaleToTmsSupportedLocale.js +10 -0
- package/dist/mapLocaleToTmsSupportedLocale/mapLocaleToTmsSupportedLocale.js.map +1 -0
- package/dist/numbers/NumberFormatter.d.ts +2 -2
- package/dist/numbers/NumberFormatter.js.map +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @procore/globalization-toolkit
|
|
2
2
|
|
|
3
|
+
## 3.6.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- abd64cb: - Added mapLocaleToTmsSupportedLocale to replace getOverrideLocale later on. as we want locales to flow from the monolith through MFEs without being overridden
|
|
8
|
+
- Added new locales for TmsSupportedLocale and AllLocale types.
|
|
9
|
+
- TmsSupportedLocale and AllLocale are not limited to the defined locales, they supports any other locales passed as well
|
|
10
|
+
|
|
3
11
|
## 3.5.0
|
|
4
12
|
|
|
5
13
|
### Minor Changes
|
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
export type DatesAndNumbersLocale = string;
|
|
2
|
+
export declare const DEFAULT_LOCALE = "en";
|
|
2
3
|
export type FormatterOptions = {
|
|
3
4
|
locale: string;
|
|
4
5
|
};
|
|
5
|
-
export declare const TMS_SUPPORTED_LOCALES: readonly ["de-DE", "en-AU", "en-CA", "en-GB", "en", "es-ES", "es", "fr-CA", "fr-FR", "is-IS", "it-IT", "ja-JP", "pl-PL", "pseudo", "pt-BR", "th-TH", "zh-SG"];
|
|
6
|
+
export declare const TMS_SUPPORTED_LOCALES: readonly ["de-DE", "en-AU", "en-CA", "en-GB", "en", "es-ES", "es", "fr-CA", "fr-FR", "is-IS", "it-IT", "ja-JP", "nb-NO", "pl-PL", "pseudo", "pt-BR", "pt-PT", "th-TH", "zh-SG", "zh-TW"];
|
|
6
7
|
export declare const UNSUPPORTED_LOCALES: readonly ["en-AE", "en-SG"];
|
|
7
|
-
export declare const ALL_LOCALES: ("de-DE" | "en-AU" | "en-CA" | "en-GB" | "
|
|
8
|
-
export type TmsSupportedLocale = (typeof TMS_SUPPORTED_LOCALES)[number];
|
|
9
|
-
export type AllLocale =
|
|
8
|
+
export declare const ALL_LOCALES: ("en" | "de-DE" | "en-AU" | "en-CA" | "en-GB" | "es-ES" | "es" | "fr-CA" | "fr-FR" | "is-IS" | "it-IT" | "ja-JP" | "nb-NO" | "pl-PL" | "pseudo" | "pt-BR" | "pt-PT" | "th-TH" | "zh-SG" | "zh-TW" | "en-AE" | "en-SG")[];
|
|
9
|
+
export type TmsSupportedLocale = (typeof TMS_SUPPORTED_LOCALES)[number] | (string & {});
|
|
10
|
+
export type AllLocale = (typeof UNSUPPORTED_LOCALES)[number] | TmsSupportedLocale;
|
|
10
11
|
export type MapLocalesToTranslations<Locales extends string = TmsSupportedLocale, TranslationType = DeepNestedRecords> = Record<Locales, TranslationType>;
|
|
11
12
|
type DeepNestedRecords = {
|
|
12
13
|
[K: string]: string | DeepNestedRecords;
|
package/dist/Formatter.types.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ALL_LOCALES = exports.UNSUPPORTED_LOCALES = exports.TMS_SUPPORTED_LOCALES = void 0;
|
|
3
|
+
exports.ALL_LOCALES = exports.UNSUPPORTED_LOCALES = exports.TMS_SUPPORTED_LOCALES = exports.DEFAULT_LOCALE = void 0;
|
|
4
|
+
exports.DEFAULT_LOCALE = "en";
|
|
4
5
|
exports.TMS_SUPPORTED_LOCALES = [
|
|
5
6
|
"de-DE",
|
|
6
7
|
"en-AU",
|
|
@@ -14,11 +15,14 @@ exports.TMS_SUPPORTED_LOCALES = [
|
|
|
14
15
|
"is-IS",
|
|
15
16
|
"it-IT",
|
|
16
17
|
"ja-JP",
|
|
18
|
+
"nb-NO",
|
|
17
19
|
"pl-PL",
|
|
18
20
|
"pseudo",
|
|
19
21
|
"pt-BR",
|
|
22
|
+
"pt-PT",
|
|
20
23
|
"th-TH",
|
|
21
24
|
"zh-SG",
|
|
25
|
+
"zh-TW",
|
|
22
26
|
];
|
|
23
27
|
exports.UNSUPPORTED_LOCALES = ["en-AE", "en-SG"];
|
|
24
28
|
exports.ALL_LOCALES = [...exports.TMS_SUPPORTED_LOCALES, ...exports.UNSUPPORTED_LOCALES];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Formatter.types.js","sourceRoot":"","sources":["../src/Formatter.types.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"Formatter.types.js","sourceRoot":"","sources":["../src/Formatter.types.ts"],"names":[],"mappings":";;;AAOa,QAAA,cAAc,GAAG,IAAI,CAAC;AAMtB,QAAA,qBAAqB,GAAG;IACnC,OAAO;IACP,OAAO;IACP,OAAO;IACP,OAAO;IACP,IAAI;IACJ,OAAO;IACP,IAAI;IACJ,OAAO;IACP,OAAO;IACP,OAAO;IACP,OAAO;IACP,OAAO;IACP,OAAO;IACP,OAAO;IACP,QAAQ;IACR,OAAO;IACP,OAAO;IACP,OAAO;IACP,OAAO;IACP,OAAO;CACC,CAAC;AAEE,QAAA,mBAAmB,GAAG,CAAC,OAAO,EAAE,OAAO,CAAU,CAAC;AAElD,QAAA,WAAW,GAAG,CAAC,GAAG,6BAAqB,EAAE,GAAG,2BAAmB,CAAC,CAAC"}
|
package/dist/FormatterUtils.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type
|
|
1
|
+
import { type FormatterOptions } from "./Formatter.types";
|
|
2
2
|
export declare const sanitizeLocale: (locale: string) => string;
|
|
3
3
|
export declare function validateLocale(locale: string): FormatterOptions["locale"];
|
|
4
4
|
export declare function getINTLCompatibleLocale(locale: string): FormatterOptions["locale"];
|
package/dist/FormatterUtils.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.escapeRegEx = exports.getINTLCompatibleLocale = exports.validateLocale = exports.sanitizeLocale = void 0;
|
|
4
|
+
const Formatter_types_1 = require("./Formatter.types");
|
|
4
5
|
const GetOverrideLocale_1 = require("./getOverrideLocale/GetOverrideLocale");
|
|
5
6
|
const sanitizeLocale = (locale) => {
|
|
6
7
|
const newLocale = (0, GetOverrideLocale_1.getOverrideLocale)(locale);
|
|
@@ -15,7 +16,7 @@ const sanitizeLocale = (locale) => {
|
|
|
15
16
|
case "fr-CA":
|
|
16
17
|
return "fr-FR";
|
|
17
18
|
default:
|
|
18
|
-
return newLocale ===
|
|
19
|
+
return newLocale === Formatter_types_1.DEFAULT_LOCALE ? "en-US" : newLocale;
|
|
19
20
|
}
|
|
20
21
|
};
|
|
21
22
|
exports.sanitizeLocale = sanitizeLocale;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FormatterUtils.js","sourceRoot":"","sources":["../src/FormatterUtils.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"FormatterUtils.js","sourceRoot":"","sources":["../src/FormatterUtils.ts"],"names":[],"mappings":";;;AAAA,uDAA0E;AAC1E,6EAA0E;AAcnE,MAAM,cAAc,GAAG,CAAC,MAAc,EAAU,EAAE;IACvD,MAAM,SAAS,GAAG,IAAA,qCAAiB,EAAC,MAAM,CAAC,CAAC;IAC5C,QAAQ,MAAM,EAAE;QACd,KAAK,OAAO,CAAC;QACb,KAAK,QAAQ;YACX,OAAO,OAAO,CAAC;QACjB,KAAK,kBAAkB;YACrB,OAAO,OAAO,CAAC;QACjB,KAAK,IAAI;YACP,OAAO,QAAQ,CAAC;QAClB,KAAK,OAAO;YACV,OAAO,OAAO,CAAC;QACjB;YACE,OAAO,SAAS,KAAK,gCAAc,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;KAC7D;AACH,CAAC,CAAC;AAfW,QAAA,cAAc,kBAezB;AAEF,SAAgB,cAAc,CAAC,MAAc;IAC3C,IAAI;QACF,IAAI,IAAI,CAAC,YAAY,CAAC,MAAM,CAAC,CAAC;QAC9B,OAAO,MAAM,CAAC;KACf;IAAC,WAAM;QACN,MAAM,WAAW,GAAG,mCAAmC,MAAM,yCAAyC,CAAC;QACvG,OAAO,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;QAC1B,MAAM,IAAI,KAAK,CAAC,WAAW,CAAC,CAAC;KAC9B;AACH,CAAC;AATD,wCASC;AAED,SAAgB,uBAAuB,CACrC,MAAc;IAEd,IAAI;QACF,OAAO,cAAc,CAAC,MAAM,CAAC,CAAC;KAC/B;IAAC,WAAM;QACN,OAAO,IAAA,sBAAc,EAAC,MAAM,CAAC,CAAC;KAC/B;AACH,CAAC;AARD,0DAQC;AAED,SAAgB,WAAW,CAAC,KAAa;IACvC,OAAO,KAAK,CAAC,OAAO,CAAC,wBAAwB,EAAE,MAAM,CAAC,CAAC;AACzD,CAAC;AAFD,kCAEC"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type
|
|
1
|
+
import { type TmsSupportedLocale } from "../Formatter.types";
|
|
2
2
|
export type SupportDocsBaseURL = "https://support.procore.com" | `https://${string}.support.procore.com`;
|
|
3
|
-
export declare function getSupportDocsBaseURL(locale
|
|
3
|
+
export declare function getSupportDocsBaseURL(locale?: TmsSupportedLocale): SupportDocsBaseURL;
|
|
4
4
|
export declare function generateSupportDocsURL(url: string, locale: TmsSupportedLocale): string;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.generateSupportDocsURL = exports.getSupportDocsBaseURL = void 0;
|
|
4
|
+
const Formatter_types_1 = require("../Formatter.types");
|
|
4
5
|
const LOCALE_URL_PREFIX_MAP = new Map([
|
|
5
6
|
["de-DE", "de"],
|
|
6
7
|
["en-AU", "en-au"],
|
|
@@ -14,7 +15,7 @@ const LOCALE_URL_PREFIX_MAP = new Map([
|
|
|
14
15
|
["pt-BR", "pt-br"],
|
|
15
16
|
["zh-SG", "zh-sg"],
|
|
16
17
|
]);
|
|
17
|
-
function getSupportDocsBaseURL(locale) {
|
|
18
|
+
function getSupportDocsBaseURL(locale = Formatter_types_1.DEFAULT_LOCALE) {
|
|
18
19
|
const prefix = LOCALE_URL_PREFIX_MAP.get(locale);
|
|
19
20
|
return prefix
|
|
20
21
|
? `https://${prefix}.support.procore.com`
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"GenerateSupportDocsURL.js","sourceRoot":"","sources":["../../src/generateSupportDocsURL/GenerateSupportDocsURL.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"GenerateSupportDocsURL.js","sourceRoot":"","sources":["../../src/generateSupportDocsURL/GenerateSupportDocsURL.ts"],"names":[],"mappings":";;;AAAA,wDAI4B;AAU5B,MAAM,qBAAqB,GAAmC,IAAI,GAAG,CAAC;IACpE,CAAC,OAAO,EAAE,IAAI,CAAC;IACf,CAAC,OAAO,EAAE,OAAO,CAAC;IAClB,CAAC,OAAO,EAAE,OAAO,CAAC;IAClB,CAAC,OAAO,EAAE,OAAO,CAAC;IAClB,CAAC,IAAI,EAAE,IAAI,CAAC;IACZ,CAAC,OAAO,EAAE,OAAO,CAAC;IAClB,CAAC,OAAO,EAAE,OAAO,CAAC;IAClB,CAAC,OAAO,EAAE,IAAI,CAAC;IACf,CAAC,OAAO,EAAE,OAAO,CAAC;IAClB,CAAC,OAAO,EAAE,OAAO,CAAC;IAClB,CAAC,OAAO,EAAE,OAAO,CAAC;CACnB,CAAC,CAAC;AAaH,SAAgB,qBAAqB,CACnC,SAA6B,gCAAc;IAE3C,MAAM,MAAM,GAAG,qBAAqB,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC;IACjD,OAAO,MAAM;QACX,CAAC,CAAC,WAAW,MAAM,sBAAsB;QACzC,CAAC,CAAC,6BAA6B,CAAC;AACpC,CAAC;AAPD,sDAOC;AAQD,SAAgB,sBAAsB,CACpC,GAAW,EACX,MAA0B;IAE1B,MAAM,OAAO,GAAG,qBAAqB,CAAC,MAAM,CAAC,CAAC;IAE9C,IAAI;QACF,MAAM,MAAM,GAAG,IAAI,GAAG,CAAC,GAAG,CAAC,CAAC;QAC5B,OAAO,GAAG,OAAO,GAAG,MAAM,CAAC,QAAQ,GAAG,MAAM,CAAC,MAAM,EAAE,CAAC;KACvD;IAAC,WAAM;QAEN,OAAO,CAAC,KAAK,CAAC,wBAAwB,GAAG,EAAE,CAAC,CAAC;KAC9C;IAED,OAAO,GAAG,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,OAAO,GAAG,GAAG,EAAE,CAAC,CAAC,CAAC,GAAG,OAAO,IAAI,GAAG,EAAE,CAAC;AACxE,CAAC;AAfD,wDAeC"}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { TmsSupportedLocale } from "../Formatter.types";
|
|
1
|
+
import { AllLocale, TmsSupportedLocale } from "../Formatter.types";
|
|
2
2
|
export declare const FALLBACK_LOCALE_MAP: Record<string, TmsSupportedLocale>;
|
|
3
|
-
export declare function getFallbackLocaleList(envLocale?:
|
|
3
|
+
export declare function getFallbackLocaleList(envLocale?: AllLocale): TmsSupportedLocale[];
|
|
@@ -1,20 +1,21 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.getFallbackLocaleList = exports.FALLBACK_LOCALE_MAP = void 0;
|
|
4
|
-
const
|
|
4
|
+
const Formatter_types_1 = require("../Formatter.types");
|
|
5
|
+
const mapLocaleToTmsSupportedLocale_1 = require("../mapLocaleToTmsSupportedLocale/mapLocaleToTmsSupportedLocale");
|
|
5
6
|
exports.FALLBACK_LOCALE_MAP = {
|
|
6
7
|
"es-ES": "es",
|
|
7
8
|
"fr-FR": "fr-CA",
|
|
8
9
|
};
|
|
9
|
-
function getFallbackLocaleList(envLocale =
|
|
10
|
-
const validLocale = (0,
|
|
11
|
-
if (validLocale ===
|
|
12
|
-
return [
|
|
10
|
+
function getFallbackLocaleList(envLocale = Formatter_types_1.DEFAULT_LOCALE) {
|
|
11
|
+
const validLocale = (0, mapLocaleToTmsSupportedLocale_1.mapLocaleToTmsSupportedLocale)(envLocale);
|
|
12
|
+
if (validLocale === Formatter_types_1.DEFAULT_LOCALE) {
|
|
13
|
+
return [Formatter_types_1.DEFAULT_LOCALE];
|
|
13
14
|
}
|
|
14
15
|
if (exports.FALLBACK_LOCALE_MAP[validLocale]) {
|
|
15
|
-
return [validLocale, exports.FALLBACK_LOCALE_MAP[validLocale],
|
|
16
|
+
return [validLocale, exports.FALLBACK_LOCALE_MAP[validLocale], Formatter_types_1.DEFAULT_LOCALE];
|
|
16
17
|
}
|
|
17
|
-
return [validLocale,
|
|
18
|
+
return [validLocale, Formatter_types_1.DEFAULT_LOCALE];
|
|
18
19
|
}
|
|
19
20
|
exports.getFallbackLocaleList = getFallbackLocaleList;
|
|
20
21
|
//# sourceMappingURL=GetFallbackLocaleList.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"GetFallbackLocaleList.js","sourceRoot":"","sources":["../../src/getFallbackLocaleList/GetFallbackLocaleList.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"GetFallbackLocaleList.js","sourceRoot":"","sources":["../../src/getFallbackLocaleList/GetFallbackLocaleList.ts"],"names":[],"mappings":";;;AAAA,wDAI4B;AAC5B,kHAA+G;AAKlG,QAAA,mBAAmB,GAAuC;IACrE,OAAO,EAAE,IAAI;IACb,OAAO,EAAE,OAAO;CACjB,CAAC;AAOF,SAAgB,qBAAqB,CACnC,YAAuB,gCAAc;IAGrC,MAAM,WAAW,GAAG,IAAA,6DAA6B,EAAC,SAAS,CAAC,CAAC;IAE7D,IAAI,WAAW,KAAK,gCAAc,EAAE;QAClC,OAAO,CAAC,gCAAc,CAAC,CAAC;KACzB;IAED,IAAI,2BAAmB,CAAC,WAAW,CAAC,EAAE;QACpC,OAAO,CAAC,WAAW,EAAE,2BAAmB,CAAC,WAAW,CAAC,EAAE,gCAAc,CAAC,CAAC;KACxE;IAED,OAAO,CAAC,WAAW,EAAE,gCAAc,CAAC,CAAC;AACvC,CAAC;AAfD,sDAeC"}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { TmsSupportedLocale } from "../Formatter.types";
|
|
1
|
+
import { AllLocale, type TmsSupportedLocale } from "../Formatter.types";
|
|
2
2
|
export declare const OVERWRITE_LOCALE_MAP: Record<string, TmsSupportedLocale>;
|
|
3
|
-
export declare function getOverrideLocale(envLocale:
|
|
3
|
+
export declare function getOverrideLocale(envLocale: AllLocale): TmsSupportedLocale;
|
|
@@ -14,7 +14,7 @@ function getOverrideLocale(envLocale) {
|
|
|
14
14
|
if (exports.OVERWRITE_LOCALE_MAP[envLocale]) {
|
|
15
15
|
return exports.OVERWRITE_LOCALE_MAP[envLocale];
|
|
16
16
|
}
|
|
17
|
-
return
|
|
17
|
+
return Formatter_types_1.DEFAULT_LOCALE;
|
|
18
18
|
}
|
|
19
19
|
exports.getOverrideLocale = getOverrideLocale;
|
|
20
20
|
//# sourceMappingURL=GetOverrideLocale.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"GetOverrideLocale.js","sourceRoot":"","sources":["../../src/getOverrideLocale/GetOverrideLocale.ts"],"names":[],"mappings":";;;AAAA,
|
|
1
|
+
{"version":3,"file":"GetOverrideLocale.js","sourceRoot":"","sources":["../../src/getOverrideLocale/GetOverrideLocale.ts"],"names":[],"mappings":";;;AAAA,wDAK4B;AAOf,QAAA,oBAAoB,GAAuC;IACtE,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE,OAAO;IAChB,QAAQ,EAAE,IAAI;CACN,CAAC;AAQX,SAAgB,iBAAiB,CAAC,SAAoB;IACpD,IACE,uCAAqB,CAAC,QAAQ,CAC5B,SAAmD,CACpD,EACD;QACA,OAAO,SAA+B,CAAC;KACxC;IACD,IAAI,4BAAoB,CAAC,SAAS,CAAC,EAAE;QACnC,OAAO,4BAAoB,CAAC,SAAS,CAAC,CAAC;KACxC;IAED,OAAO,gCAAc,CAAC;AACxB,CAAC;AAbD,8CAaC"}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
+
import { type AllLocale } from "../Formatter.types";
|
|
1
2
|
export type Translations = {
|
|
2
3
|
[key: string]: string;
|
|
3
4
|
};
|
|
4
|
-
export declare function getTranslationsFromLocale(envLocale:
|
|
5
|
+
export declare function getTranslationsFromLocale(envLocale: AllLocale | undefined, localeLoader: (lang: string) => Promise<{
|
|
5
6
|
default: Translations;
|
|
6
7
|
}>): Promise<Record<string, Translations>>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"GetTranslationsFromLocale.js","sourceRoot":"","sources":["../../src/getTranslationsFromLocale/GetTranslationsFromLocale.ts"],"names":[],"mappings":";;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"GetTranslationsFromLocale.js","sourceRoot":"","sources":["../../src/getTranslationsFromLocale/GetTranslationsFromLocale.ts"],"names":[],"mappings":";;;;;;;;;;;;AACA,0FAAuF;AAevF,SAAsB,yBAAyB,CAC7C,SAAgC,EAChC,YAAkE;;QAElE,MAAM,eAAe,GAAG,IAAA,6CAAqB,EAAC,SAAS,CAAC,CAAC;QACzD,MAAM,mBAAmB,GAAG,eAAe,CAAC,GAAG,CAC7C,CAAC,IAAI,EAAE,EAAE,CACP,YAAY,CAAC,IAAI,CAAC;aACf,IAAI,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC;YACjB,CAAC,IAAI,CAAC,EAAE,MAAM,CAAC,OAAO;SACvB,CAAC,CAAC;aACF,KAAK,CAAC,GAAG,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,CACvB,CAAC;QAEF,MAAM,iBAAiB,GAAG,MAAM,OAAO,CAAC,GAAG,CAAC,mBAAmB,CAAC,CAAC;QAEjE,OAAO,iBAAiB,CAAC,MAAM,CAC7B,CAAC,GAAG,EAAE,YAAY,EAAE,EAAE,CAAC,iCAAM,GAAG,GAAK,YAAY,EAAG,EACpD,EAAE,CACH,CAAC;IACJ,CAAC;CAAA;AApBD,8DAoBC"}
|
package/dist/index.d.ts
CHANGED
|
@@ -2,10 +2,11 @@ export { NumberFormatter, formatNumber, formatNumberToParts, parseNumber, getNum
|
|
|
2
2
|
export { CurrencyFormatter, formatCurrency, formatCurrencyToParts, parseCurrency, getCurrencySeparators, getSupportedCurrencies, } from "./numbers/CurrencyFormatter";
|
|
3
3
|
export { DateTimeFormatter, formatDateTime, formatDateTimeToLocalISOString, formatDateTimeToParts, getStartDayOfTheWeek, getDatePartsWithPlaceholders, getDatePlaceholder, formatRelativeTime, } from "./dateTimes/DateTimeFormatter";
|
|
4
4
|
export { getOverrideLocale, OVERWRITE_LOCALE_MAP, } from "./getOverrideLocale/GetOverrideLocale";
|
|
5
|
+
export { mapLocaleToTmsSupportedLocale } from "./mapLocaleToTmsSupportedLocale/mapLocaleToTmsSupportedLocale";
|
|
5
6
|
export { type SupportDocsBaseURL, generateSupportDocsURL, getSupportDocsBaseURL, } from "./generateSupportDocsURL/GenerateSupportDocsURL";
|
|
6
7
|
export { getFallbackLocaleList, FALLBACK_LOCALE_MAP, } from "./getFallbackLocaleList/GetFallbackLocaleList";
|
|
7
8
|
export { type Translations, getTranslationsFromLocale, } from "./getTranslationsFromLocale/GetTranslationsFromLocale";
|
|
8
9
|
export type { Percent, NumberOptions, NumberFormatPart, Separators, } from "./numbers/Number.types";
|
|
9
10
|
export type { CurrencyDisplay, CurrencySign, CurrencyOptions, } from "./numbers/Currency.types";
|
|
10
11
|
export type { DateTimeStyle, NumericTwoDigit, DateStyle, TimeStyle, TimeZoneName, Weekday, Year, Month, Day, Hour, Minute, Second, DateLabelOptions, DateTimeOptionsBasic, DateTimeOptionsStyle, DateTimeOptionsComponentsAll, DateTimeOptionsComponentsWeekdayYearMonthDay, DateTimeOptionsComponentsYearMonthDay, DateTimeOptionsComponentsYearMonth, DateTimeOptionsComponentsMonthDay, DateTimeOptionsComponentsHourMinuteSecond, DateTimeOptionsComponentsHourMinute, DateTimeOptions, DateTimeFormatPart, RelativeTimeOptions, } from "./dateTimes/DateTime.types";
|
|
11
|
-
export { type DatesAndNumbersLocale as Locale, type FormatterOptions,
|
|
12
|
+
export { TMS_SUPPORTED_LOCALES, ALL_LOCALES, DEFAULT_LOCALE, type DatesAndNumbersLocale as Locale, type FormatterOptions, type TmsSupportedLocale, type AllLocale, type MapLocalesToTranslations, } from "./Formatter.types";
|
package/dist/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ALL_LOCALES = exports.TMS_SUPPORTED_LOCALES = exports.getTranslationsFromLocale = exports.FALLBACK_LOCALE_MAP = exports.getFallbackLocaleList = exports.getSupportDocsBaseURL = exports.generateSupportDocsURL = exports.OVERWRITE_LOCALE_MAP = exports.getOverrideLocale = exports.formatRelativeTime = exports.getDatePlaceholder = exports.getDatePartsWithPlaceholders = exports.getStartDayOfTheWeek = exports.formatDateTimeToParts = exports.formatDateTimeToLocalISOString = exports.formatDateTime = exports.DateTimeFormatter = exports.getSupportedCurrencies = exports.getCurrencySeparators = exports.parseCurrency = exports.formatCurrencyToParts = exports.formatCurrency = exports.CurrencyFormatter = exports.getNumberSeparators = exports.parseNumber = exports.formatNumberToParts = exports.formatNumber = exports.NumberFormatter = void 0;
|
|
3
|
+
exports.DEFAULT_LOCALE = exports.ALL_LOCALES = exports.TMS_SUPPORTED_LOCALES = exports.getTranslationsFromLocale = exports.FALLBACK_LOCALE_MAP = exports.getFallbackLocaleList = exports.getSupportDocsBaseURL = exports.generateSupportDocsURL = exports.mapLocaleToTmsSupportedLocale = exports.OVERWRITE_LOCALE_MAP = exports.getOverrideLocale = exports.formatRelativeTime = exports.getDatePlaceholder = exports.getDatePartsWithPlaceholders = exports.getStartDayOfTheWeek = exports.formatDateTimeToParts = exports.formatDateTimeToLocalISOString = exports.formatDateTime = exports.DateTimeFormatter = exports.getSupportedCurrencies = exports.getCurrencySeparators = exports.parseCurrency = exports.formatCurrencyToParts = exports.formatCurrency = exports.CurrencyFormatter = exports.getNumberSeparators = exports.parseNumber = exports.formatNumberToParts = exports.formatNumber = exports.NumberFormatter = void 0;
|
|
4
4
|
var NumberFormatter_1 = require("./numbers/NumberFormatter");
|
|
5
5
|
Object.defineProperty(exports, "NumberFormatter", { enumerable: true, get: function () { return NumberFormatter_1.NumberFormatter; } });
|
|
6
6
|
Object.defineProperty(exports, "formatNumber", { enumerable: true, get: function () { return NumberFormatter_1.formatNumber; } });
|
|
@@ -26,6 +26,8 @@ Object.defineProperty(exports, "formatRelativeTime", { enumerable: true, get: fu
|
|
|
26
26
|
var GetOverrideLocale_1 = require("./getOverrideLocale/GetOverrideLocale");
|
|
27
27
|
Object.defineProperty(exports, "getOverrideLocale", { enumerable: true, get: function () { return GetOverrideLocale_1.getOverrideLocale; } });
|
|
28
28
|
Object.defineProperty(exports, "OVERWRITE_LOCALE_MAP", { enumerable: true, get: function () { return GetOverrideLocale_1.OVERWRITE_LOCALE_MAP; } });
|
|
29
|
+
var mapLocaleToTmsSupportedLocale_1 = require("./mapLocaleToTmsSupportedLocale/mapLocaleToTmsSupportedLocale");
|
|
30
|
+
Object.defineProperty(exports, "mapLocaleToTmsSupportedLocale", { enumerable: true, get: function () { return mapLocaleToTmsSupportedLocale_1.mapLocaleToTmsSupportedLocale; } });
|
|
29
31
|
var GenerateSupportDocsURL_1 = require("./generateSupportDocsURL/GenerateSupportDocsURL");
|
|
30
32
|
Object.defineProperty(exports, "generateSupportDocsURL", { enumerable: true, get: function () { return GenerateSupportDocsURL_1.generateSupportDocsURL; } });
|
|
31
33
|
Object.defineProperty(exports, "getSupportDocsBaseURL", { enumerable: true, get: function () { return GenerateSupportDocsURL_1.getSupportDocsBaseURL; } });
|
|
@@ -37,4 +39,5 @@ Object.defineProperty(exports, "getTranslationsFromLocale", { enumerable: true,
|
|
|
37
39
|
var Formatter_types_1 = require("./Formatter.types");
|
|
38
40
|
Object.defineProperty(exports, "TMS_SUPPORTED_LOCALES", { enumerable: true, get: function () { return Formatter_types_1.TMS_SUPPORTED_LOCALES; } });
|
|
39
41
|
Object.defineProperty(exports, "ALL_LOCALES", { enumerable: true, get: function () { return Formatter_types_1.ALL_LOCALES; } });
|
|
42
|
+
Object.defineProperty(exports, "DEFAULT_LOCALE", { enumerable: true, get: function () { return Formatter_types_1.DEFAULT_LOCALE; } });
|
|
40
43
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;AAAA,6DAMmC;AALjC,kHAAA,eAAe,OAAA;AACf,+GAAA,YAAY,OAAA;AACZ,sHAAA,mBAAmB,OAAA;AACnB,8GAAA,WAAW,OAAA;AACX,sHAAA,mBAAmB,OAAA;AAErB,iEAOqC;AANnC,sHAAA,iBAAiB,OAAA;AACjB,mHAAA,cAAc,OAAA;AACd,0HAAA,qBAAqB,OAAA;AACrB,kHAAA,aAAa,OAAA;AACb,0HAAA,qBAAqB,OAAA;AACrB,2HAAA,sBAAsB,OAAA;AAExB,mEASuC;AARrC,sHAAA,iBAAiB,OAAA;AACjB,mHAAA,cAAc,OAAA;AACd,mIAAA,8BAA8B,OAAA;AAC9B,0HAAA,qBAAqB,OAAA;AACrB,yHAAA,oBAAoB,OAAA;AACpB,iIAAA,4BAA4B,OAAA;AAC5B,uHAAA,kBAAkB,OAAA;AAClB,uHAAA,kBAAkB,OAAA;AAEpB,2EAG+C;AAF7C,sHAAA,iBAAiB,OAAA;AACjB,yHAAA,oBAAoB,OAAA;AAEtB,0FAIyD;AAFvD,gIAAA,sBAAsB,OAAA;AACtB,+HAAA,qBAAqB,OAAA;AAEvB,uFAGuD;AAFrD,8HAAA,qBAAqB,OAAA;AACrB,4HAAA,mBAAmB,OAAA;AAErB,mGAG+D;AAD7D,sIAAA,yBAAyB,OAAA;AAyC3B,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;AAAA,6DAMmC;AALjC,kHAAA,eAAe,OAAA;AACf,+GAAA,YAAY,OAAA;AACZ,sHAAA,mBAAmB,OAAA;AACnB,8GAAA,WAAW,OAAA;AACX,sHAAA,mBAAmB,OAAA;AAErB,iEAOqC;AANnC,sHAAA,iBAAiB,OAAA;AACjB,mHAAA,cAAc,OAAA;AACd,0HAAA,qBAAqB,OAAA;AACrB,kHAAA,aAAa,OAAA;AACb,0HAAA,qBAAqB,OAAA;AACrB,2HAAA,sBAAsB,OAAA;AAExB,mEASuC;AARrC,sHAAA,iBAAiB,OAAA;AACjB,mHAAA,cAAc,OAAA;AACd,mIAAA,8BAA8B,OAAA;AAC9B,0HAAA,qBAAqB,OAAA;AACrB,yHAAA,oBAAoB,OAAA;AACpB,iIAAA,4BAA4B,OAAA;AAC5B,uHAAA,kBAAkB,OAAA;AAClB,uHAAA,kBAAkB,OAAA;AAEpB,2EAG+C;AAF7C,sHAAA,iBAAiB,OAAA;AACjB,yHAAA,oBAAoB,OAAA;AAEtB,+GAA8G;AAArG,8IAAA,6BAA6B,OAAA;AACtC,0FAIyD;AAFvD,gIAAA,sBAAsB,OAAA;AACtB,+HAAA,qBAAqB,OAAA;AAEvB,uFAGuD;AAFrD,8HAAA,qBAAqB,OAAA;AACrB,4HAAA,mBAAmB,OAAA;AAErB,mGAG+D;AAD7D,sIAAA,yBAAyB,OAAA;AAyC3B,qDAS2B;AARzB,wHAAA,qBAAqB,OAAA;AACrB,8GAAA,WAAW,OAAA;AACX,iHAAA,cAAc,OAAA"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.mapLocaleToTmsSupportedLocale = void 0;
|
|
4
|
+
const GetOverrideLocale_1 = require("../getOverrideLocale/GetOverrideLocale");
|
|
5
|
+
function mapLocaleToTmsSupportedLocale(locale) {
|
|
6
|
+
var _a;
|
|
7
|
+
return (_a = GetOverrideLocale_1.OVERWRITE_LOCALE_MAP[locale]) !== null && _a !== void 0 ? _a : locale;
|
|
8
|
+
}
|
|
9
|
+
exports.mapLocaleToTmsSupportedLocale = mapLocaleToTmsSupportedLocale;
|
|
10
|
+
//# sourceMappingURL=mapLocaleToTmsSupportedLocale.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"mapLocaleToTmsSupportedLocale.js","sourceRoot":"","sources":["../../src/mapLocaleToTmsSupportedLocale/mapLocaleToTmsSupportedLocale.ts"],"names":[],"mappings":";;;AACA,8EAA8E;AAO9E,SAAgB,6BAA6B,CAC3C,MAAiB;;IAEjB,OAAO,MAAA,wCAAoB,CAAC,MAAM,CAAC,mCAAI,MAAM,CAAC;AAChD,CAAC;AAJD,sEAIC"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { AllLocale } from "../Formatter.types";
|
|
2
2
|
import { NumberOptions, NumberFormatPart, Separators, Percent } from "./Number.types";
|
|
3
3
|
export declare class NumberFormatter {
|
|
4
4
|
formatter: Intl.NumberFormat;
|
|
@@ -12,4 +12,4 @@ export declare class NumberFormatter {
|
|
|
12
12
|
export declare function formatNumber(value: number | string, numberOptions: NumberOptions): string;
|
|
13
13
|
export declare function formatNumberToParts(value: number, numberOptions: NumberOptions): NumberFormatPart[];
|
|
14
14
|
export declare function parseNumber(value: string, numberOptions: NumberOptions): number;
|
|
15
|
-
export declare function getNumberSeparators(locale:
|
|
15
|
+
export declare function getNumberSeparators(locale: AllLocale): Separators;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NumberFormatter.js","sourceRoot":"","sources":["../../src/numbers/NumberFormatter.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"NumberFormatter.js","sourceRoot":"","sources":["../../src/numbers/NumberFormatter.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.es2021.d.ts","../node_modules/typescript/lib/lib.es2022.d.ts","../node_modules/typescript/lib/lib.es2023.d.ts","../node_modules/typescript/lib/lib.esnext.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.date.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.es2021.promise.d.ts","../node_modules/typescript/lib/lib.es2021.string.d.ts","../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../node_modules/typescript/lib/lib.es2021.intl.d.ts","../node_modules/typescript/lib/lib.es2022.array.d.ts","../node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/typescript/lib/lib.es2022.intl.d.ts","../node_modules/typescript/lib/lib.es2022.object.d.ts","../node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2022.string.d.ts","../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../node_modules/typescript/lib/lib.es2023.array.d.ts","../node_modules/typescript/lib/lib.es2023.collection.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../src/Formatter.types.ts","../src/getOverrideLocale/GetOverrideLocale.ts","../src/FormatterUtils.ts","../node_modules/@types/big.js/index.d.ts","../src/numbers/Number.types.ts","../src/numbers/NumberUtils.ts","../src/numbers/NumberFormatter.ts","../src/numbers/Currency.types.ts","../src/lib/CoreNumberFormatter.ts","../src/numbers/SupportedCurrencies.ts","../src/numbers/CurrencyUtils.ts","../src/numbers/CurrencyFormatter.ts","../node_modules/weekstart/index.d.ts","../src/dateTimes/DateTime.types.ts","../src/dateTimes/DateTimeUtils.ts","../src/dateTimes/DateTimeFormatter.ts","../src/generateSupportDocsURL/GenerateSupportDocsURL.ts","../src/getFallbackLocaleList/GetFallbackLocaleList.ts","../src/getTranslationsFromLocale/GetTranslationsFromLocale.ts","../src/index.ts","../src/test/TestBuilder.ts","../src/numbers/NumberFormatter.test.constants.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/dom-events.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/readline/promises.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/test.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/globals.global.d.ts","../node_modules/@types/node/index.d.ts","../node_modules/@jest/expect-utils/build/index.d.ts","../node_modules/chalk/index.d.ts","../node_modules/@sinclair/typebox/typebox.d.ts","../node_modules/@jest/schemas/build/index.d.ts","../node_modules/pretty-format/build/index.d.ts","../node_modules/jest-diff/build/index.d.ts","../node_modules/jest-matcher-utils/build/index.d.ts","../node_modules/expect/build/index.d.ts","../node_modules/@types/jest/index.d.ts"],"fileInfos":[{"version":"2ac9cdcfb8f8875c18d14ec5796a8b029c426f73ad6dc3ffb580c228b58d1c44","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","dc48272d7c333ccf58034c0026162576b7d50ea0e69c3b9292f803fc20720fd5","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc","1c0cdb8dc619bc549c3e5020643e7cf7ae7940058e8c7e5aefa5871b6d86f44b","bed7b7ba0eb5a160b69af72814b4dde371968e40b6c5e73d3a9f7bee407d158c",{"version":"0075fa5ceda385bcdf3488e37786b5a33be730e8bc4aa3cf1e78c63891752ce8","affectsGlobalScope":true},{"version":"f296963760430fb65b4e5d91f0ed770a91c6e77455bacf8fa23a1501654ede0e","affectsGlobalScope":true},{"version":"09226e53d1cfda217317074a97724da3e71e2c545e18774484b61562afc53cd2","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"8b41361862022eb72fcc8a7f34680ac842aca802cf4bc1f915e8c620c9ce4331","affectsGlobalScope":true},{"version":"f7bd636ae3a4623c503359ada74510c4005df5b36de7f23e1db8a5c543fd176b","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"0c20f4d2358eb679e4ae8a4432bdd96c857a2960fd6800b21ec4008ec59d60ea","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"82d0d8e269b9eeac02c3bd1c9e884e85d483fcb2cd168bccd6bc54df663da031","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"b8deab98702588840be73d67f02412a2d45a417a3c097b2e96f7f3a42ac483d1","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"376d554d042fb409cb55b5cbaf0b2b4b7e669619493c5d18d5fa8bd67273f82a","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"c4138a3dd7cd6cf1f363ca0f905554e8d81b45844feea17786cdf1626cb8ea06","affectsGlobalScope":true},{"version":"6ff3e2452b055d8f0ec026511c6582b55d935675af67cdb67dd1dc671e8065df","affectsGlobalScope":true},{"version":"03de17b810f426a2f47396b0b99b53a82c1b60e9cba7a7edda47f9bb077882f4","affectsGlobalScope":true},{"version":"8184c6ddf48f0c98429326b428478ecc6143c27f79b79e85740f17e6feb090f1","affectsGlobalScope":true},{"version":"261c4d2cf86ac5a89ad3fb3fafed74cbb6f2f7c1d139b0540933df567d64a6ca","affectsGlobalScope":true},{"version":"6af1425e9973f4924fca986636ac19a0cf9909a7e0d9d3009c349e6244e957b6","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"15a630d6817718a2ddd7088c4f83e4673fde19fa992d2eae2cf51132a302a5d3","affectsGlobalScope":true},{"version":"b7e9f95a7387e3f66be0ed6db43600c49cec33a3900437ce2fd350d9b7cb16f2","affectsGlobalScope":true},{"version":"01e0ee7e1f661acedb08b51f8a9b7d7f959e9cdb6441360f06522cc3aea1bf2e","affectsGlobalScope":true},{"version":"ac17a97f816d53d9dd79b0d235e1c0ed54a8cc6a0677e9a3d61efb480b2a3e4e","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"9cc66b0513ad41cb5f5372cca86ef83a0d37d1c1017580b7dace3ea5661836df","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"709efdae0cb5df5f49376cde61daacc95cdd44ae4671da13a540da5088bf3f30","affectsGlobalScope":true},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true},{"version":"bc496ef4377553e461efcf7cc5a5a57cf59f9962aea06b5e722d54a36bf66ea1","affectsGlobalScope":true},{"version":"038a2f66a34ee7a9c2fbc3584c8ab43dff2995f8c68e3f566f4c300d2175e31e","affectsGlobalScope":true},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true},{"version":"f5c92f2c27b06c1a41b88f6db8299205aee52c2a2943f7ed29bd585977f254e8","affectsGlobalScope":true},{"version":"930b0e15811f84e203d3c23508674d5ded88266df4b10abee7b31b2ac77632d2","affectsGlobalScope":true},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true},{"version":"b9ea5778ff8b50d7c04c9890170db34c26a5358cccba36844fe319f50a43a61a","affectsGlobalScope":true},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true},{"version":"50d53ccd31f6667aff66e3d62adf948879a3a16f05d89882d1188084ee415bbc","affectsGlobalScope":true},{"version":"65be38e881453e16f128a12a8d36f8b012aa279381bf3d4dc4332a4905ceec83","affectsGlobalScope":true},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true},{"version":"307c8b7ebbd7f23a92b73a4c6c0a697beca05b06b036c23a34553e5fe65e4fdc","affectsGlobalScope":true},{"version":"e1913f656c156a9e4245aa111fbb436d357d9e1fe0379b9a802da7fe3f03d736","affectsGlobalScope":true},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true},{"version":"f35a831e4f0fe3b3697f4a0fe0e3caa7624c92b78afbecaf142c0f93abfaf379","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},{"version":"c40d17c6a28c17006dc518413ce570534700fec4681727a89a27f728ee10c50f","signature":"998d1201e2928561c8ee4be430677b34b85e626c62f1edaa269025cce24361cc"},{"version":"a6eb3467e3534e78a6074c1d11014ed9aa7ad6b7b37ba7956137e483ff33a0f3","signature":"f7434c5ff343885e59e17e2a8340871a5d4b841332ce185d4b820be8a433791a"},{"version":"d9c2403fed3491dbd4ed1740dff2dbf4f146c29e1586d9a3233c1ab303e151aa","signature":"7088e4148f113ea7b9ffc3038faa177ab692175ed64a24b42c9a105144d39d77"},"ef50b93a202c92c16ba0aa66ac03ded00a213eea4c2fa30adbc191a944f76f12",{"version":"74888ee11b1ca4684607fe7cbabb38bff0b4e5734afad5e11493ad612f37e1da","signature":"aa15aad042596c35de7f81d53322d5093c33e13f647519717b97d8071a7b806a"},{"version":"d856ead3263482ea571f44c1f6bd5bf6527eb6b39e44864ec5c01294e2a0b71e","signature":"f4818db57a5012eff53662a3fc2d0ef646f3f49bc8f5a587007a16d0ab518fcb"},{"version":"a1e95e00abfa0a9a67db23e7c19b2d143996d79cdc6ded8b8f5fb7942dfdc932","signature":"9a68f31c5a94a881d795f31d52b6170d214b39856a15c988f708c7774312f88a"},{"version":"c065683dcfeed2135593f14c51e12dcf910156fb7bc6b9dc1839a5cc21160e56","signature":"297292152d0603ecbda48142e2cdd8dd70bcd471cbb1e447afa76c68bf57a5f7"},{"version":"90d79a36a82a32a2c2838ac6c0ec53e2ee236f097843ce3265a4a057d523ed26","signature":"6886a5e13dd53a5a85145eab8e673b56c0d4a1e6f11c0a626a39ac7fc301fa1d"},{"version":"ccea02626672db94540b9bf513e5b714cb93d9504254de6cced4a1a40f175878","signature":"ff09efae0e02c67e43231ae69cdc4b32d21aa18b981fb231cc92a84fe01ca3fc"},{"version":"fe4d028316eec392f71e289f3c434e29d39d270ea5e8f70c8984899444c019ef","signature":"0797cb460c903afc67bf76091dcffea48d8964963d4f0703882c4a83b1e1a137"},{"version":"bf71558eae87c1e3ce202c96caab54d27d7290dfbf57e1fad060d6c99c9eb443","signature":"1359d06b8007e756a74e95379aa560e08ff0f6fbfcc824476ee02ef6ecbb6ba6"},"296ce8ff193943f93f6ed81a911c5afc354041d4a3b208d0434525af1f3d765b",{"version":"e7a986d3ea09835ed8895506c71cb02ba401bfc0a11b5151860572609e0a115e","signature":"2941dc7a4d63b87a54df3f5329f76433f9a9ccea2261ab60a7a24f30142fa90b"},{"version":"d17da54daaecca7595be6b994611f6c26240d8c2d3455c2ccca2de6edfe2761b","signature":"18d4d4b13e7bb34ba7cb87d5d672f19c2ae63f6aca376b0c3565dac1781871be"},{"version":"35851857caf253961ef606cb5b86c0be954e47499d3d84f4313759d31aa8ac77","signature":"50c7e17852e1e01a66d93a385e89bd20053ce6433384d0ecb2f197deb769bedd"},{"version":"73163ec405791fb6af9c889a627c45af865b7534c7e2373dbce3bc4ef98aba07","signature":"8511a948365a0206583f949beb960f2c652002ed2e2489216f37e2e8fcd4b733"},{"version":"ffcc7a956f033cc2e97a607b1c4fb3dfa9505f3168927e700fd44ca4a9c830ee","signature":"e8da162e2ba9104b16dde60844520c7f42795bda613410362414ff70d8928e3a"},{"version":"007034fd44736ec4207d0e207cf1558cf5605edbf8de277db4bc9cfc10791674","signature":"3ea900d971788b80319428dcdae86d9f50f12810ff7cb68f4f2bdfc0e9022a11"},{"version":"b2634a24673caa22b78ccddb42e6687608fda270ff6afa21b24ef9822a6c43c1","signature":"78bb9f8e8fe20050c66090cefce94ae25b9587e0309e3e80adf4343354e4774e"},{"version":"8c7feb15648db8053b6b98270ee2fdb8503962eae3b02fff4edabc3ed9097d44","signature":"f037a960c05431515439dbb70c29403c5199e5333ca92dce7eb959d441413aec"},{"version":"63bb16ce514003d2becf364d66df5e3e2eb3ccb5bbd2cc4818f66cea0ec1902f","signature":"080290c451b61bfa03dd7b32088838aaf612b3f4831aefcb299b30905ff21973"},"66a6e7b6e32eea099615d627028ed0d681679e31237df03e68e1b912e3e61da0","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"f749812878fecfa53cfc13b36e5d35086fb6377983a9df44175da83ccc23af1f","affectsGlobalScope":true},"fd536fe411f46ae62c4729e342a3494adbdd54335e41039c238170c9781da9ff",{"version":"772ff00e189d93488d1ca6f0f4dfba77bd090a99ed31e19a14bc16fad4078e48","affectsGlobalScope":true},"d9b1fa0da9fbff85402c3ee794bcfe6d7cfef2fa053761b7d83989cdb7f9b26d","ac0c7cb0a4c1bec60be2c0460b3bda1e674eaf2c98312d7b6f16a0bb58718e2d",{"version":"7e2181a6fc140b4525d5a45c204477c37fa78a635558e88552c68f76a4325403","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","6a6bfa45d3ed96dea1ad653444fb26ddaa9245d2e2d6ddaab050cb9a2c0936d7","276b547eeb8eeeee9a446a3bfa6e07d1c0199269bdcf33813abab1281394a9cb","c999f7816955f75b447823e3e4085f699600e2a4a3327907df9af65b0a9c0df6","958df89fdcf5555cdfd57a14037e05505048dd29c59e8009bea279b65523b241","ffa8324a4c0611f9a50262fb36f097eeabe0fa0d71755aa67156da13cde1b932","9b814e0806922056145bedb096f11b73bdce70cc871f3ccfc4ce00b2cba75718",{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true},{"version":"be3d24f3fd8c85fedd91485b207d180f14ac2602805b52f6a33462ada14c27b0","affectsGlobalScope":true},"443509b8f5fa1242a5b542ec817f0e9ef48064a7298daad87607bb8543e93db9","2ad6a251b6ef19fd1f8498f83bb7b265033bd52287e1f6569d09544f18806713","bfa08f2c30c475aef1c9451855ba6b2acfdc64f61950a38fae75806d66fb85c2","159807eb55a9439f9a675bd493788190a6203b5f36c315f8c3acbfcb875c7072","fe31b2b31ac5453fc7b8eef32b62017e55b214ceb884f0b177f442af92e84682","dd72576c8ea64d55af46a386068503d3cfcecce84ed7e1cbd4ff4081ba67fafc",{"version":"125af9d85cb9d5e508353f10a8d52f01652d2d48b2cea54789a33e5b4d289c1c","affectsGlobalScope":true},"70a7e8a7880d55396285e4b85ff5bdf3af3083176abe07f944967836f2a43188","3570df7c6f3a976109f55b596a2d88c2f87e0574cd1502272594ee5c4e56d0ef","850e95721334c2aa7697b08782f443ec4286274e5024169d4443933544f359d7",{"version":"74e6cd21f7b5e29fab05060ea24e2b90aa254f16f3f62ccd7055bdb8fc7b2ff5","affectsGlobalScope":true},{"version":"5761c90b0cabdd6bd1f5fb1c3bf942088fdd39e18ed35dbe39b0c34bc733bf13","affectsGlobalScope":true},"1eb6c5569d41e6021832d0a8a71f45fecbc13d03ad7d306da485999148b64955","c05ef0ecf06540ad3039515c10d3b27f9380639ced40f4093fd073e1b5ff21d9","c774096c5935712de41c763e3c08a04b7a788a85fb07a0c2df23fb5ace3bc610","2b847f2aba41dcd69677684d5d300c08aea4e306c305fd39bf548cef19f03cfe","f4c0cbc93eb51fd61e07a86111739770dd524f6297bd83266ff004aec553e085","9a134dbb29f0af914d90b23f609b39019d66ed53db7d492ab6b04c67114559da","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","785e5be57d4f20f290a20e7b0c6263f6c57fd6e51283050756cef07d6d651c68","44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","7b3781fbdfddbee8dba55ccee5aa74a7c8d6701ade11d49ab7d8cb1fcefe669e","c4aab2ec3a249f2a4caa9cbdb099752a80daf999b79d85aa3504cdfd6e559476",{"version":"2cff47e15621f3055af1df1547426f833c9d0a571750c4f0659836f45c50fe0a","affectsGlobalScope":true},"ad08154d9602429522cac965a715fde27d421d69b24756c5d291877dda75353e","c764a6cf523d13f2304a23216cd1084e28c041eebabd8aa9b2a9d99866c668c0","1272a5c2bd05961adc473e905332b7a422b00485c10b41c752f7fcf6835e3436","30ef92bf8135ce36ba1231fe41715276f2a40be72a478ddeb862bc16672e8680",{"version":"4ace0a30a70fe5963442d75ea6e69f525671ae76f6e57ab7556c44839b4237e8","affectsGlobalScope":true},{"version":"a6f03dbf03c001fb3ac1c9bea6dde049dfff27ef8886cc4a886374aacf2e997d","affectsGlobalScope":true},"66bfb3de947abf4b117ee849c245425dbe494d6903e28f9ded566e91c9d05d77","c28d4f58131b93d60e087b86148d4e0c9d9b5c49c23ff1a9d1a9594fdedd5d08","c6b5d7f259544c91024ecf2b17138574a3f6ff2476468fafd7f957d2b68d6d98",{"version":"1ec27c4b695590464113276d174f873e260e468ef226b7dc18f9193875fa559d","affectsGlobalScope":true},"33da4ee2ab9fdd9ef8b3fc526d871ce02ae8c825283f5695e7cad507c087b97c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"71709584ed5ed7d236dc225441ec4634ffc6c718853e04b9c27b9ea121459044","763e521cf114b80e0dd0e21ca49b9f8ae62e8999555a5e7bade8ce36b33001c2","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","3054ef91b855e005b9c4681399e9d64d2a7b07a22d539314d794f09e53b876a7","ffcc5500e77223169833fc6eb59b3a507944a1f89574e0a1276b0ea7fc22c4a4","22f13de9e2fe5f0f4724797abd3d34a1cdd6e47ef81fc4933fea3b8bf4ad524b","e3ba509d3dce019b3190ceb2f3fc88e2610ab717122dabd91a9efaa37804040d","cda0cb09b995489b7f4c57f168cd31b83dcbaa7aad49612734fb3c9c73f6e4f2","f72f8428f3c1caa22e9c247d046603b85b442c0dae7b77a7a0bc092c18867cb7",{"version":"195f63105abc03e72b6a176e3e34dfb5ac932b55db378fdc7874b1617e24b465","affectsGlobalScope":true}],"root":[[65,67],[69,76],[78,86]],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"emitDecoratorMetadata":true,"esModuleInterop":true,"experimentalDecorators":true,"module":1,"outDir":"./","removeComments":true,"sourceMap":true,"strict":true,"strictBindCallApply":true,"strictFunctionTypes":true,"strictNullChecks":true,"strictPropertyInitialization":true,"target":2},"fileIdsList":[[133],[133,143],[133,145,148],[87,133],[90,133],[91,96,124,133],[92,103,104,111,121,132,133],[92,93,103,111,133],[94,133],[95,96,104,112,133],[96,121,129,133],[97,99,103,111,133],[98,133],[99,100,133],[103,133],[101,103,133],[103,104,105,121,132,133],[103,104,105,118,121,124,133],[133,137],[99,103,106,111,121,132,133],[103,104,106,107,111,121,129,132,133],[106,108,121,129,132,133],[87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139],[103,109,133],[110,132,133],[99,103,111,121,133],[112,133],[113,133],[90,114,133],[115,131,133,137],[116,133],[117,133],[103,118,119,133],[118,120,133,135],[91,103,121,122,123,124,133],[91,121,123,133],[121,122,133],[124,133],[125,133],[121,133],[103,127,128,133],[127,128,133],[96,111,121,129,133],[130,133],[111,131,133],[91,106,117,132,133],[96,133],[121,133,134],[133,135],[133,136],[91,96,103,105,114,121,132,133,135,137],[121,133,138],[133,141,147],[133,145],[133,142,146],[133,144],[65,66,133],[65,133],[65,77,78,79,133],[67,78,133],[82,133],[65,66,69,71,72,76,78,80,81,82,83,133],[72,133],[69,133],[67,69,70,72,75,133],[67,70,72,73,74,133],[69,85,133],[65,67,69,70,133],[67,68,69,133],[65],[65,78],[78],[65,66,69,71,72,76,78,80,81,82,83],[69],[69,72],[72],[85],[65,69]],"referencedMap":[[141,1],[144,2],[143,1],[68,1],[149,3],[87,4],[88,4],[90,5],[91,6],[92,7],[93,8],[94,9],[95,10],[96,11],[97,12],[98,13],[99,14],[100,14],[102,15],[101,16],[103,15],[104,17],[105,18],[89,19],[139,1],[106,20],[107,21],[108,22],[140,23],[109,24],[110,25],[111,26],[112,27],[113,28],[114,29],[115,30],[116,31],[117,32],[118,33],[119,33],[120,34],[121,35],[123,36],[122,37],[124,38],[125,39],[126,40],[127,41],[128,42],[129,43],[130,44],[131,45],[132,46],[133,47],[134,48],[135,49],[136,50],[137,51],[138,52],[142,1],[148,53],[146,54],[147,55],[145,56],[63,1],[64,1],[12,1],[14,1],[13,1],[2,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[22,1],[3,1],[4,1],[23,1],[27,1],[24,1],[25,1],[26,1],[28,1],[29,1],[30,1],[5,1],[31,1],[32,1],[33,1],[34,1],[6,1],[38,1],[35,1],[36,1],[37,1],[39,1],[7,1],[40,1],[45,1],[46,1],[41,1],[42,1],[43,1],[44,1],[8,1],[50,1],[47,1],[48,1],[49,1],[51,1],[9,1],[52,1],[53,1],[54,1],[57,1],[55,1],[56,1],[58,1],[59,1],[10,1],[1,1],[11,1],[62,1],[61,1],[60,1],[77,1],[65,1],[67,57],[78,58],[80,59],[79,60],[81,58],[82,57],[66,58],[83,61],[84,62],[73,63],[72,64],[76,65],[75,66],[69,58],[86,67],[71,68],[70,69],[74,1],[85,58]],"exportedModulesMap":[[141,1],[144,2],[143,1],[68,1],[149,3],[87,4],[88,4],[90,5],[91,6],[92,7],[93,8],[94,9],[95,10],[96,11],[97,12],[98,13],[99,14],[100,14],[102,15],[101,16],[103,15],[104,17],[105,18],[89,19],[139,1],[106,20],[107,21],[108,22],[140,23],[109,24],[110,25],[111,26],[112,27],[113,28],[114,29],[115,30],[116,31],[117,32],[118,33],[119,33],[120,34],[121,35],[123,36],[122,37],[124,38],[125,39],[126,40],[127,41],[128,42],[129,43],[130,44],[131,45],[132,46],[133,47],[134,48],[135,49],[136,50],[137,51],[138,52],[142,1],[148,53],[146,54],[147,55],[145,56],[63,1],[64,1],[12,1],[14,1],[13,1],[2,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[22,1],[3,1],[4,1],[23,1],[27,1],[24,1],[25,1],[26,1],[28,1],[29,1],[30,1],[5,1],[31,1],[32,1],[33,1],[34,1],[6,1],[38,1],[35,1],[36,1],[37,1],[39,1],[7,1],[40,1],[45,1],[46,1],[41,1],[42,1],[43,1],[44,1],[8,1],[50,1],[47,1],[48,1],[49,1],[51,1],[9,1],[52,1],[53,1],[54,1],[57,1],[55,1],[56,1],[58,1],[59,1],[10,1],[1,1],[11,1],[62,1],[61,1],[60,1],[77,1],[67,70],[78,70],[80,71],[79,72],[81,70],[82,70],[66,70],[84,73],[72,74],[76,75],[75,76],[69,70],[86,77],[71,78],[70,74],[85,70]],"semanticDiagnosticsPerFile":[141,144,143,68,149,87,88,90,91,92,93,94,95,96,97,98,99,100,102,101,103,104,105,89,139,106,107,108,140,109,110,111,112,113,114,115,116,117,118,119,120,121,123,122,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,142,148,146,147,145,63,64,12,14,13,2,15,16,17,18,19,20,21,22,3,4,23,27,24,25,26,28,29,30,5,31,32,33,34,6,38,35,36,37,39,7,40,45,46,41,42,43,44,8,50,47,48,49,51,9,52,53,54,57,55,56,58,59,10,1,11,62,61,60,77,65,67,78,80,79,81,82,66,83,84,73,72,76,75,69,86,71,70,74,85]},"version":"5.2.2"}
|
|
1
|
+
{"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.es2021.d.ts","../node_modules/typescript/lib/lib.es2022.d.ts","../node_modules/typescript/lib/lib.es2023.d.ts","../node_modules/typescript/lib/lib.esnext.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.date.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.es2021.promise.d.ts","../node_modules/typescript/lib/lib.es2021.string.d.ts","../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../node_modules/typescript/lib/lib.es2021.intl.d.ts","../node_modules/typescript/lib/lib.es2022.array.d.ts","../node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/typescript/lib/lib.es2022.intl.d.ts","../node_modules/typescript/lib/lib.es2022.object.d.ts","../node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2022.string.d.ts","../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../node_modules/typescript/lib/lib.es2023.array.d.ts","../node_modules/typescript/lib/lib.es2023.collection.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../src/Formatter.types.ts","../src/getOverrideLocale/GetOverrideLocale.ts","../src/FormatterUtils.ts","../node_modules/@types/big.js/index.d.ts","../src/numbers/Number.types.ts","../src/numbers/NumberUtils.ts","../src/numbers/NumberFormatter.ts","../src/numbers/Currency.types.ts","../src/lib/CoreNumberFormatter.ts","../src/numbers/SupportedCurrencies.ts","../src/numbers/CurrencyUtils.ts","../src/numbers/CurrencyFormatter.ts","../node_modules/weekstart/index.d.ts","../src/dateTimes/DateTime.types.ts","../src/dateTimes/DateTimeUtils.ts","../src/dateTimes/DateTimeFormatter.ts","../src/mapLocaleToTmsSupportedLocale/mapLocaleToTmsSupportedLocale.ts","../src/generateSupportDocsURL/GenerateSupportDocsURL.ts","../src/getFallbackLocaleList/GetFallbackLocaleList.ts","../src/getTranslationsFromLocale/GetTranslationsFromLocale.ts","../src/index.ts","../src/test/TestBuilder.ts","../src/numbers/NumberFormatter.test.constants.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/dom-events.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/readline/promises.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/test.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/globals.global.d.ts","../node_modules/@types/node/index.d.ts","../node_modules/@jest/expect-utils/build/index.d.ts","../node_modules/chalk/index.d.ts","../node_modules/@sinclair/typebox/typebox.d.ts","../node_modules/@jest/schemas/build/index.d.ts","../node_modules/pretty-format/build/index.d.ts","../node_modules/jest-diff/build/index.d.ts","../node_modules/jest-matcher-utils/build/index.d.ts","../node_modules/expect/build/index.d.ts","../node_modules/@types/jest/index.d.ts"],"fileInfos":[{"version":"2ac9cdcfb8f8875c18d14ec5796a8b029c426f73ad6dc3ffb580c228b58d1c44","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","dc48272d7c333ccf58034c0026162576b7d50ea0e69c3b9292f803fc20720fd5","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc","1c0cdb8dc619bc549c3e5020643e7cf7ae7940058e8c7e5aefa5871b6d86f44b","bed7b7ba0eb5a160b69af72814b4dde371968e40b6c5e73d3a9f7bee407d158c",{"version":"0075fa5ceda385bcdf3488e37786b5a33be730e8bc4aa3cf1e78c63891752ce8","affectsGlobalScope":true},{"version":"f296963760430fb65b4e5d91f0ed770a91c6e77455bacf8fa23a1501654ede0e","affectsGlobalScope":true},{"version":"09226e53d1cfda217317074a97724da3e71e2c545e18774484b61562afc53cd2","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"8b41361862022eb72fcc8a7f34680ac842aca802cf4bc1f915e8c620c9ce4331","affectsGlobalScope":true},{"version":"f7bd636ae3a4623c503359ada74510c4005df5b36de7f23e1db8a5c543fd176b","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"0c20f4d2358eb679e4ae8a4432bdd96c857a2960fd6800b21ec4008ec59d60ea","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"82d0d8e269b9eeac02c3bd1c9e884e85d483fcb2cd168bccd6bc54df663da031","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"b8deab98702588840be73d67f02412a2d45a417a3c097b2e96f7f3a42ac483d1","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"376d554d042fb409cb55b5cbaf0b2b4b7e669619493c5d18d5fa8bd67273f82a","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"c4138a3dd7cd6cf1f363ca0f905554e8d81b45844feea17786cdf1626cb8ea06","affectsGlobalScope":true},{"version":"6ff3e2452b055d8f0ec026511c6582b55d935675af67cdb67dd1dc671e8065df","affectsGlobalScope":true},{"version":"03de17b810f426a2f47396b0b99b53a82c1b60e9cba7a7edda47f9bb077882f4","affectsGlobalScope":true},{"version":"8184c6ddf48f0c98429326b428478ecc6143c27f79b79e85740f17e6feb090f1","affectsGlobalScope":true},{"version":"261c4d2cf86ac5a89ad3fb3fafed74cbb6f2f7c1d139b0540933df567d64a6ca","affectsGlobalScope":true},{"version":"6af1425e9973f4924fca986636ac19a0cf9909a7e0d9d3009c349e6244e957b6","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"15a630d6817718a2ddd7088c4f83e4673fde19fa992d2eae2cf51132a302a5d3","affectsGlobalScope":true},{"version":"b7e9f95a7387e3f66be0ed6db43600c49cec33a3900437ce2fd350d9b7cb16f2","affectsGlobalScope":true},{"version":"01e0ee7e1f661acedb08b51f8a9b7d7f959e9cdb6441360f06522cc3aea1bf2e","affectsGlobalScope":true},{"version":"ac17a97f816d53d9dd79b0d235e1c0ed54a8cc6a0677e9a3d61efb480b2a3e4e","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"9cc66b0513ad41cb5f5372cca86ef83a0d37d1c1017580b7dace3ea5661836df","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"709efdae0cb5df5f49376cde61daacc95cdd44ae4671da13a540da5088bf3f30","affectsGlobalScope":true},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true},{"version":"bc496ef4377553e461efcf7cc5a5a57cf59f9962aea06b5e722d54a36bf66ea1","affectsGlobalScope":true},{"version":"038a2f66a34ee7a9c2fbc3584c8ab43dff2995f8c68e3f566f4c300d2175e31e","affectsGlobalScope":true},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true},{"version":"f5c92f2c27b06c1a41b88f6db8299205aee52c2a2943f7ed29bd585977f254e8","affectsGlobalScope":true},{"version":"930b0e15811f84e203d3c23508674d5ded88266df4b10abee7b31b2ac77632d2","affectsGlobalScope":true},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true},{"version":"b9ea5778ff8b50d7c04c9890170db34c26a5358cccba36844fe319f50a43a61a","affectsGlobalScope":true},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true},{"version":"50d53ccd31f6667aff66e3d62adf948879a3a16f05d89882d1188084ee415bbc","affectsGlobalScope":true},{"version":"65be38e881453e16f128a12a8d36f8b012aa279381bf3d4dc4332a4905ceec83","affectsGlobalScope":true},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true},{"version":"307c8b7ebbd7f23a92b73a4c6c0a697beca05b06b036c23a34553e5fe65e4fdc","affectsGlobalScope":true},{"version":"e1913f656c156a9e4245aa111fbb436d357d9e1fe0379b9a802da7fe3f03d736","affectsGlobalScope":true},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true},{"version":"f35a831e4f0fe3b3697f4a0fe0e3caa7624c92b78afbecaf142c0f93abfaf379","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},{"version":"46cf601d98060d62dcde3acdfe963f7b8bf557442febadb52c76813584efb4c3","signature":"a609408e31205ab7e37b9b709c3dd418da31aeb8c0510cdd92c3e2a6ffa571ae"},{"version":"49862256914eebca3a35b36cc6064095d9d0bb50ba3c5d062caa330a6bd49ce7","signature":"08b1630ac89cf97f5f43f602046df4f3844ba08d69b3c705f09fecc61c7c387b"},{"version":"bac5d9a0d570670c77bf69a1a16892bd058f66b31c5e28f496caf583a0cc1acc","signature":"4748c994127e708f2fc90c0ef4565077a46ab6d90de6b6c6052eab169ca847e5"},"ef50b93a202c92c16ba0aa66ac03ded00a213eea4c2fa30adbc191a944f76f12",{"version":"74888ee11b1ca4684607fe7cbabb38bff0b4e5734afad5e11493ad612f37e1da","signature":"aa15aad042596c35de7f81d53322d5093c33e13f647519717b97d8071a7b806a"},{"version":"d856ead3263482ea571f44c1f6bd5bf6527eb6b39e44864ec5c01294e2a0b71e","signature":"f4818db57a5012eff53662a3fc2d0ef646f3f49bc8f5a587007a16d0ab518fcb"},{"version":"05a640e355bc961fa95e1b3cddcd814e63bbcfa7d19d2fa6a3eda226120109c8","signature":"fe3a893706a4844547d5755c3bc9a851ecba2b494dbfcfd88541ffdcb26f1053"},{"version":"c065683dcfeed2135593f14c51e12dcf910156fb7bc6b9dc1839a5cc21160e56","signature":"297292152d0603ecbda48142e2cdd8dd70bcd471cbb1e447afa76c68bf57a5f7"},{"version":"90d79a36a82a32a2c2838ac6c0ec53e2ee236f097843ce3265a4a057d523ed26","signature":"6886a5e13dd53a5a85145eab8e673b56c0d4a1e6f11c0a626a39ac7fc301fa1d"},{"version":"ccea02626672db94540b9bf513e5b714cb93d9504254de6cced4a1a40f175878","signature":"ff09efae0e02c67e43231ae69cdc4b32d21aa18b981fb231cc92a84fe01ca3fc"},{"version":"fe4d028316eec392f71e289f3c434e29d39d270ea5e8f70c8984899444c019ef","signature":"0797cb460c903afc67bf76091dcffea48d8964963d4f0703882c4a83b1e1a137"},{"version":"bf71558eae87c1e3ce202c96caab54d27d7290dfbf57e1fad060d6c99c9eb443","signature":"1359d06b8007e756a74e95379aa560e08ff0f6fbfcc824476ee02ef6ecbb6ba6"},"296ce8ff193943f93f6ed81a911c5afc354041d4a3b208d0434525af1f3d765b",{"version":"e7a986d3ea09835ed8895506c71cb02ba401bfc0a11b5151860572609e0a115e","signature":"2941dc7a4d63b87a54df3f5329f76433f9a9ccea2261ab60a7a24f30142fa90b"},{"version":"d17da54daaecca7595be6b994611f6c26240d8c2d3455c2ccca2de6edfe2761b","signature":"18d4d4b13e7bb34ba7cb87d5d672f19c2ae63f6aca376b0c3565dac1781871be"},{"version":"35851857caf253961ef606cb5b86c0be954e47499d3d84f4313759d31aa8ac77","signature":"50c7e17852e1e01a66d93a385e89bd20053ce6433384d0ecb2f197deb769bedd"},{"version":"abbad583e58327df5b8906974c9f937a9065f88c7e664d407212e79921f1711c","signature":"62253cbdd79645c6574db82e498487438971b73ba4bbfdb62ebd90e6abd939d9"},{"version":"866a6386ebdc4f48569e67ca799946eccb6562da9f71d5625703e394d95be037","signature":"309792dc2dd6aa5eac65e2d9799c1837151574c353cac21b8751acd290fd7c8e"},{"version":"49b8cc789218574bd14e4430c263bae80995b8c613ae211ce72c8323ed56c223","signature":"0b06d5f2f25a4630503c78c34fe235797d4ee39f9c1db7fa9d162d69fa0b30a5"},{"version":"0312aa08d77e60dc09541db9a77283b84b2cc1ae1116cdddf0721036a63649b7","signature":"6143c4f0ffce4b504f7c8263d395ef2a20b6be639a047d01cb0c3635a97f50a9"},{"version":"a18520088f4c7ee0fafd532c94935f851b686ba7be0da1a9540612af5fb4dcb8","signature":"988c98d869bf4e0e285392f8223bf3b2c69a18df686c25edb29918bf576d16c8"},{"version":"8c7feb15648db8053b6b98270ee2fdb8503962eae3b02fff4edabc3ed9097d44","signature":"f037a960c05431515439dbb70c29403c5199e5333ca92dce7eb959d441413aec"},{"version":"63bb16ce514003d2becf364d66df5e3e2eb3ccb5bbd2cc4818f66cea0ec1902f","signature":"080290c451b61bfa03dd7b32088838aaf612b3f4831aefcb299b30905ff21973"},"66a6e7b6e32eea099615d627028ed0d681679e31237df03e68e1b912e3e61da0","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"f749812878fecfa53cfc13b36e5d35086fb6377983a9df44175da83ccc23af1f","affectsGlobalScope":true},"fd536fe411f46ae62c4729e342a3494adbdd54335e41039c238170c9781da9ff",{"version":"772ff00e189d93488d1ca6f0f4dfba77bd090a99ed31e19a14bc16fad4078e48","affectsGlobalScope":true},"d9b1fa0da9fbff85402c3ee794bcfe6d7cfef2fa053761b7d83989cdb7f9b26d","ac0c7cb0a4c1bec60be2c0460b3bda1e674eaf2c98312d7b6f16a0bb58718e2d",{"version":"7e2181a6fc140b4525d5a45c204477c37fa78a635558e88552c68f76a4325403","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","6a6bfa45d3ed96dea1ad653444fb26ddaa9245d2e2d6ddaab050cb9a2c0936d7","276b547eeb8eeeee9a446a3bfa6e07d1c0199269bdcf33813abab1281394a9cb","c999f7816955f75b447823e3e4085f699600e2a4a3327907df9af65b0a9c0df6","958df89fdcf5555cdfd57a14037e05505048dd29c59e8009bea279b65523b241","ffa8324a4c0611f9a50262fb36f097eeabe0fa0d71755aa67156da13cde1b932","9b814e0806922056145bedb096f11b73bdce70cc871f3ccfc4ce00b2cba75718",{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true},{"version":"be3d24f3fd8c85fedd91485b207d180f14ac2602805b52f6a33462ada14c27b0","affectsGlobalScope":true},"443509b8f5fa1242a5b542ec817f0e9ef48064a7298daad87607bb8543e93db9","2ad6a251b6ef19fd1f8498f83bb7b265033bd52287e1f6569d09544f18806713","bfa08f2c30c475aef1c9451855ba6b2acfdc64f61950a38fae75806d66fb85c2","159807eb55a9439f9a675bd493788190a6203b5f36c315f8c3acbfcb875c7072","fe31b2b31ac5453fc7b8eef32b62017e55b214ceb884f0b177f442af92e84682","dd72576c8ea64d55af46a386068503d3cfcecce84ed7e1cbd4ff4081ba67fafc",{"version":"125af9d85cb9d5e508353f10a8d52f01652d2d48b2cea54789a33e5b4d289c1c","affectsGlobalScope":true},"70a7e8a7880d55396285e4b85ff5bdf3af3083176abe07f944967836f2a43188","3570df7c6f3a976109f55b596a2d88c2f87e0574cd1502272594ee5c4e56d0ef","850e95721334c2aa7697b08782f443ec4286274e5024169d4443933544f359d7",{"version":"74e6cd21f7b5e29fab05060ea24e2b90aa254f16f3f62ccd7055bdb8fc7b2ff5","affectsGlobalScope":true},{"version":"5761c90b0cabdd6bd1f5fb1c3bf942088fdd39e18ed35dbe39b0c34bc733bf13","affectsGlobalScope":true},"1eb6c5569d41e6021832d0a8a71f45fecbc13d03ad7d306da485999148b64955","c05ef0ecf06540ad3039515c10d3b27f9380639ced40f4093fd073e1b5ff21d9","c774096c5935712de41c763e3c08a04b7a788a85fb07a0c2df23fb5ace3bc610","2b847f2aba41dcd69677684d5d300c08aea4e306c305fd39bf548cef19f03cfe","f4c0cbc93eb51fd61e07a86111739770dd524f6297bd83266ff004aec553e085","9a134dbb29f0af914d90b23f609b39019d66ed53db7d492ab6b04c67114559da","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","785e5be57d4f20f290a20e7b0c6263f6c57fd6e51283050756cef07d6d651c68","44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","7b3781fbdfddbee8dba55ccee5aa74a7c8d6701ade11d49ab7d8cb1fcefe669e","c4aab2ec3a249f2a4caa9cbdb099752a80daf999b79d85aa3504cdfd6e559476",{"version":"2cff47e15621f3055af1df1547426f833c9d0a571750c4f0659836f45c50fe0a","affectsGlobalScope":true},"ad08154d9602429522cac965a715fde27d421d69b24756c5d291877dda75353e","c764a6cf523d13f2304a23216cd1084e28c041eebabd8aa9b2a9d99866c668c0","1272a5c2bd05961adc473e905332b7a422b00485c10b41c752f7fcf6835e3436","30ef92bf8135ce36ba1231fe41715276f2a40be72a478ddeb862bc16672e8680",{"version":"4ace0a30a70fe5963442d75ea6e69f525671ae76f6e57ab7556c44839b4237e8","affectsGlobalScope":true},{"version":"a6f03dbf03c001fb3ac1c9bea6dde049dfff27ef8886cc4a886374aacf2e997d","affectsGlobalScope":true},"66bfb3de947abf4b117ee849c245425dbe494d6903e28f9ded566e91c9d05d77","c28d4f58131b93d60e087b86148d4e0c9d9b5c49c23ff1a9d1a9594fdedd5d08","c6b5d7f259544c91024ecf2b17138574a3f6ff2476468fafd7f957d2b68d6d98",{"version":"1ec27c4b695590464113276d174f873e260e468ef226b7dc18f9193875fa559d","affectsGlobalScope":true},"33da4ee2ab9fdd9ef8b3fc526d871ce02ae8c825283f5695e7cad507c087b97c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"71709584ed5ed7d236dc225441ec4634ffc6c718853e04b9c27b9ea121459044","763e521cf114b80e0dd0e21ca49b9f8ae62e8999555a5e7bade8ce36b33001c2","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","3054ef91b855e005b9c4681399e9d64d2a7b07a22d539314d794f09e53b876a7","ffcc5500e77223169833fc6eb59b3a507944a1f89574e0a1276b0ea7fc22c4a4","22f13de9e2fe5f0f4724797abd3d34a1cdd6e47ef81fc4933fea3b8bf4ad524b","e3ba509d3dce019b3190ceb2f3fc88e2610ab717122dabd91a9efaa37804040d","cda0cb09b995489b7f4c57f168cd31b83dcbaa7aad49612734fb3c9c73f6e4f2","f72f8428f3c1caa22e9c247d046603b85b442c0dae7b77a7a0bc092c18867cb7",{"version":"195f63105abc03e72b6a176e3e34dfb5ac932b55db378fdc7874b1617e24b465","affectsGlobalScope":true}],"root":[[65,67],[69,76],[78,87]],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"emitDecoratorMetadata":true,"esModuleInterop":true,"experimentalDecorators":true,"module":1,"outDir":"./","removeComments":true,"sourceMap":true,"strict":true,"strictBindCallApply":true,"strictFunctionTypes":true,"strictNullChecks":true,"strictPropertyInitialization":true,"target":2},"fileIdsList":[[134],[134,144],[134,146,149],[88,134],[91,134],[92,97,125,134],[93,104,105,112,122,133,134],[93,94,104,112,134],[95,134],[96,97,105,113,134],[97,122,130,134],[98,100,104,112,134],[99,134],[100,101,134],[104,134],[102,104,134],[104,105,106,122,133,134],[104,105,106,119,122,125,134],[134,138],[100,104,107,112,122,133,134],[104,105,107,108,112,122,130,133,134],[107,109,122,130,133,134],[88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140],[104,110,134],[111,133,134],[100,104,112,122,134],[113,134],[114,134],[91,115,134],[116,132,134,138],[117,134],[118,134],[104,119,120,134],[119,121,134,136],[92,104,122,123,124,125,134],[92,122,124,134],[122,123,134],[125,134],[126,134],[122,134],[104,128,129,134],[128,129,134],[97,112,122,130,134],[131,134],[112,132,134],[92,107,118,133,134],[97,134],[122,134,135],[134,136],[134,137],[92,97,104,106,115,122,133,134,136,138],[122,134,139],[134,142,148],[134,146],[134,143,147],[134,145],[65,66,134],[65,134],[65,77,78,79,134],[67,78,134],[65,81,134],[65,83,134],[65,66,69,71,72,76,78,80,81,82,83,84,134],[72,134],[69,134],[67,69,70,72,75,134],[67,70,72,73,74,134],[69,86,134],[65,67,69,70,134],[67,68,69,134],[65],[65,78],[78],[65,66,69,71,72,76,78,80,81,82,83,84],[69],[69,72],[72],[86],[65,69]],"referencedMap":[[142,1],[145,2],[144,1],[68,1],[150,3],[88,4],[89,4],[91,5],[92,6],[93,7],[94,8],[95,9],[96,10],[97,11],[98,12],[99,13],[100,14],[101,14],[103,15],[102,16],[104,15],[105,17],[106,18],[90,19],[140,1],[107,20],[108,21],[109,22],[141,23],[110,24],[111,25],[112,26],[113,27],[114,28],[115,29],[116,30],[117,31],[118,32],[119,33],[120,33],[121,34],[122,35],[124,36],[123,37],[125,38],[126,39],[127,40],[128,41],[129,42],[130,43],[131,44],[132,45],[133,46],[134,47],[135,48],[136,49],[137,50],[138,51],[139,52],[143,1],[149,53],[147,54],[148,55],[146,56],[63,1],[64,1],[12,1],[14,1],[13,1],[2,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[22,1],[3,1],[4,1],[23,1],[27,1],[24,1],[25,1],[26,1],[28,1],[29,1],[30,1],[5,1],[31,1],[32,1],[33,1],[34,1],[6,1],[38,1],[35,1],[36,1],[37,1],[39,1],[7,1],[40,1],[45,1],[46,1],[41,1],[42,1],[43,1],[44,1],[8,1],[50,1],[47,1],[48,1],[49,1],[51,1],[9,1],[52,1],[53,1],[54,1],[57,1],[55,1],[56,1],[58,1],[59,1],[10,1],[1,1],[11,1],[62,1],[61,1],[60,1],[77,1],[65,1],[67,57],[78,58],[80,59],[79,60],[82,58],[83,61],[66,58],[84,62],[85,63],[73,64],[81,57],[72,65],[76,66],[75,67],[69,58],[87,68],[71,69],[70,70],[74,1],[86,58]],"exportedModulesMap":[[142,1],[145,2],[144,1],[68,1],[150,3],[88,4],[89,4],[91,5],[92,6],[93,7],[94,8],[95,9],[96,10],[97,11],[98,12],[99,13],[100,14],[101,14],[103,15],[102,16],[104,15],[105,17],[106,18],[90,19],[140,1],[107,20],[108,21],[109,22],[141,23],[110,24],[111,25],[112,26],[113,27],[114,28],[115,29],[116,30],[117,31],[118,32],[119,33],[120,33],[121,34],[122,35],[124,36],[123,37],[125,38],[126,39],[127,40],[128,41],[129,42],[130,43],[131,44],[132,45],[133,46],[134,47],[135,48],[136,49],[137,50],[138,51],[139,52],[143,1],[149,53],[147,54],[148,55],[146,56],[63,1],[64,1],[12,1],[14,1],[13,1],[2,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[22,1],[3,1],[4,1],[23,1],[27,1],[24,1],[25,1],[26,1],[28,1],[29,1],[30,1],[5,1],[31,1],[32,1],[33,1],[34,1],[6,1],[38,1],[35,1],[36,1],[37,1],[39,1],[7,1],[40,1],[45,1],[46,1],[41,1],[42,1],[43,1],[44,1],[8,1],[50,1],[47,1],[48,1],[49,1],[51,1],[9,1],[52,1],[53,1],[54,1],[57,1],[55,1],[56,1],[58,1],[59,1],[10,1],[1,1],[11,1],[62,1],[61,1],[60,1],[77,1],[67,71],[78,71],[80,72],[79,73],[82,71],[83,71],[66,71],[84,71],[85,74],[81,71],[72,75],[76,76],[75,77],[69,71],[87,78],[71,79],[70,75],[86,71]],"semanticDiagnosticsPerFile":[142,145,144,68,150,88,89,91,92,93,94,95,96,97,98,99,100,101,103,102,104,105,106,90,140,107,108,109,141,110,111,112,113,114,115,116,117,118,119,120,121,122,124,123,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,143,149,147,148,146,63,64,12,14,13,2,15,16,17,18,19,20,21,22,3,4,23,27,24,25,26,28,29,30,5,31,32,33,34,6,38,35,36,37,39,7,40,45,46,41,42,43,44,8,50,47,48,49,51,9,52,53,54,57,55,56,58,59,10,1,11,62,61,60,77,65,67,78,80,79,82,83,66,84,85,73,81,72,76,75,69,87,71,70,74,86]},"version":"5.2.2"}
|