@ts-type/package-dts 1.0.50 → 1.0.55

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 CHANGED
@@ -3,6 +3,79 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [1.0.55](https://github.com/bluelovers/ws-ts-type/compare/@ts-type/package-dts@1.0.54...@ts-type/package-dts@1.0.55) (2021-12-04)
7
+
8
+ **Note:** Version bump only for package @ts-type/package-dts
9
+
10
+
11
+
12
+
13
+
14
+ ## [1.0.54](https://github.com/bluelovers/ws-ts-type/compare/@ts-type/package-dts@1.0.53...@ts-type/package-dts@1.0.54) (2021-11-28)
15
+
16
+
17
+ ### 📦 Code Refactoring
18
+
19
+ * update `IPackageJson` ([81ce0f4](https://github.com/bluelovers/ws-ts-type/commit/81ce0f4330e1092b85c79f160c320bd529117ed8))
20
+
21
+
22
+ ### ♻️ Chores
23
+
24
+ * **deps:** update deps ([2f1b096](https://github.com/bluelovers/ws-ts-type/commit/2f1b096db42909fb34c141b8abaa7c6bae237f53))
25
+
26
+
27
+ ### 🔖 Miscellaneous
28
+
29
+ * . ([df353d4](https://github.com/bluelovers/ws-ts-type/commit/df353d4df2d51ee07f6ec7d626ddf92aba19fff4))
30
+
31
+
32
+
33
+
34
+
35
+ ## [1.0.53](https://github.com/bluelovers/ws-ts-type/compare/@ts-type/package-dts@1.0.51...@ts-type/package-dts@1.0.53) (2021-11-20)
36
+
37
+
38
+ ### 🛠 Build System
39
+
40
+ * **schema:** update schema ([8d26cd0](https://github.com/bluelovers/ws-ts-type/commit/8d26cd02332b7f7ef5916745dc1879a47e231c68))
41
+
42
+
43
+ ### 🔖 Miscellaneous
44
+
45
+ * . ([3ae0771](https://github.com/bluelovers/ws-ts-type/commit/3ae0771a6470dd7689f28e1777bdb6352e7e429a))
46
+ * . ([870293b](https://github.com/bluelovers/ws-ts-type/commit/870293b05dc0b919c0b903cae03fb4341f92b742))
47
+
48
+
49
+
50
+
51
+
52
+ ## [1.0.52](https://github.com/bluelovers/ws-ts-type/compare/@ts-type/package-dts@1.0.51...@ts-type/package-dts@1.0.52) (2021-11-20)
53
+
54
+
55
+ ### 🛠 Build System
56
+
57
+ * **schema:** update schema ([8d26cd0](https://github.com/bluelovers/ws-ts-type/commit/8d26cd02332b7f7ef5916745dc1879a47e231c68))
58
+
59
+
60
+ ### 🔖 Miscellaneous
61
+
62
+ * . ([870293b](https://github.com/bluelovers/ws-ts-type/commit/870293b05dc0b919c0b903cae03fb4341f92b742))
63
+
64
+
65
+
66
+
67
+
68
+ ## [1.0.51](https://github.com/bluelovers/ws-ts-type/compare/@ts-type/package-dts@1.0.50...@ts-type/package-dts@1.0.51) (2021-08-31)
69
+
70
+
71
+ ### 🛠 Build System
72
+
73
+ * **schema:** update schema ([1dfcf4b](https://github.com/bluelovers/ws-ts-type/commit/1dfcf4b12e31b263ae7c392dae039a73719f5c65))
74
+
75
+
76
+
77
+
78
+
6
79
  ## [1.0.50](https://github.com/bluelovers/ws-ts-type/compare/@ts-type/package-dts@1.0.49...@ts-type/package-dts@1.0.50) (2021-07-20)
7
80
 
8
81
  **Note:** Version bump only for package @ts-type/package-dts
package/lerna-json.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"lerna-json.js","sourceRoot":"","sources":["lerna-json.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;AAOH,yDAAuC","sourcesContent":["/**\n * Created by user on 2020/6/19.\n */\n\nimport { AJSONSchemaForLernaJsonFiles } from './types/lerna.json';\nimport { ITSPartialPick, ITSMergeBoth, ITSOmitRecordType, ITSOverwrite } from 'ts-type/lib/type/record';\n\nimport { IPackageJsonTag, IReleaseType } from './lib/package-json/types';\n\nexport * from './lib/lerna-json/types';\nimport { INpmClient } from './lib/lerna-json/types';\nimport { IBranch } from './lib/types';\n\nexport type { IReleaseType }\n\ntype _Command = AJSONSchemaForLernaJsonFiles[\"command\"];\n\ntype _MergeCommand<T extends Record<string, Record<string, any>>> = {\n\t[P in keyof (T & _Command)]?:\n\t\t(P extends keyof _Command ?\n\t\t\tP extends keyof T ?\n\t\t\t\tITSMergeBoth<_Command[P], T[P]>\n\t\t\t\t: _Command[P]\n\t\t\t: T[P])\n}\n\nexport interface ILernaJsonCommand extends _MergeCommand<{\n\tpublish?: {\n\t\tconcurrency?: number;\n\t\t\"bump\"?: IReleaseType,\n\t\t\"conventionalCommits\"?: boolean,\n\t\t\"conventionalGraduate\"?: boolean,\n\t\tdistTag?: IPackageJsonTag,\n\t\tnpmClient?: INpmClient,\n\t\tallowBranch?: IBranch[],\n\t\tnoPrivate?: boolean,\n\t},\n\n\t\"version\"?: {\n\t\tconcurrency?: number;\n\t\t\"bump\"?: IReleaseType,\n\t\tallowBranch?: IBranch[],\n\t\t\"conventionalCommits\"?: boolean,\n\t\t\"changelogPreset\"?: string | \"@bluelovers/conventional-changelog-bluelovers\",\n\t\texact?: boolean;\n\t\tcreateRelease?: \"gitlab\" | \"github\",\n\t\tnoPrivate?: boolean,\n\t},\n\n\trun?: {\n\t\tconcurrency?: number;\n\t\t\"stream\"?: boolean,\n\t\tnpmClient?: INpmClient,\n\t\t[k: string]: unknown;\n\t},\n\n\texec?: {\n\t\tconcurrency?: number;\n\t\t\"stream\"?: boolean\n\t\t[k: string]: unknown;\n\t},\n}>\n{\n\t[k: string]: Record<string, unknown>;\n}\n\nexport interface ILernaJson extends ITSOverwrite<AJSONSchemaForLernaJsonFiles,\n\t{\n\n\t\t/**\n\t\t * The current version of the repository (or independent).\n\t\t */\n\t\tversion?: string | \"independent\";\n\n\t\t/**\n\t\t * Specify which client to run commands with (change to \"yarn\" to run commands with yarn. Defaults to \"npm\".\n\t\t */\n\t\tnpmClient?: INpmClient;\n\n\t\tworkspaces?: (string | \"packages/*\")[];\n\t\tpackages?: (string | \"packages/*\")[];\n\n\t\tcommand?: ILernaJsonCommand,\n\t}>\n{\n\n}\n\nexport default ILernaJson\n"]}
1
+ {"version":3,"file":"lerna-json.js","sourceRoot":"","sources":["lerna-json.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;AAOH,yDAAuC","sourcesContent":["/**\n * Created by user on 2020/6/19.\n */\n\nimport { AJSONSchemaForLernaJsonFiles } from './types/lerna.json';\nimport { ITSPartialPick, ITSMergeBoth, ITSOverwrite } from 'ts-type/lib/type/record';\n\nimport { IPackageJsonTag, IReleaseType } from './lib/package-json/types';\n\nexport * from './lib/lerna-json/types';\nimport { INpmClient } from './lib/lerna-json/types';\nimport { IBranch } from './lib/types';\nimport { ITSOmitRecordType } from 'ts-type/lib/helper/record/pick-type';\n\nexport type { IReleaseType }\n\ntype _Command = AJSONSchemaForLernaJsonFiles[\"command\"];\n\ntype _MergeCommand<T extends Record<string, Record<string, any>>> = {\n\t[P in keyof (T & _Command)]?:\n\t\t(P extends keyof _Command ?\n\t\t\tP extends keyof T ?\n\t\t\t\tITSMergeBoth<_Command[P], T[P]>\n\t\t\t\t: _Command[P]\n\t\t\t: T[P])\n}\n\nexport interface ILernaJsonCommand extends _MergeCommand<{\n\tpublish?: {\n\t\tconcurrency?: number;\n\t\t\"bump\"?: IReleaseType,\n\t\t\"conventionalCommits\"?: boolean,\n\t\t\"conventionalGraduate\"?: boolean,\n\t\tdistTag?: IPackageJsonTag,\n\t\tnpmClient?: INpmClient,\n\t\tallowBranch?: IBranch[],\n\t\tnoPrivate?: boolean,\n\t},\n\n\t\"version\"?: {\n\t\tconcurrency?: number;\n\t\t\"bump\"?: IReleaseType,\n\t\tallowBranch?: IBranch[],\n\t\t\"conventionalCommits\"?: boolean,\n\t\t\"changelogPreset\"?: string | \"@bluelovers/conventional-changelog-bluelovers\",\n\t\texact?: boolean;\n\t\tcreateRelease?: \"gitlab\" | \"github\",\n\t\tnoPrivate?: boolean,\n\t},\n\n\trun?: {\n\t\tconcurrency?: number;\n\t\t\"stream\"?: boolean,\n\t\tnpmClient?: INpmClient,\n\t\t[k: string]: unknown;\n\t},\n\n\texec?: {\n\t\tconcurrency?: number;\n\t\t\"stream\"?: boolean\n\t\t[k: string]: unknown;\n\t},\n}>\n{\n\t[k: string]: Record<string, unknown>;\n}\n\nexport interface ILernaJson extends ITSOverwrite<AJSONSchemaForLernaJsonFiles,\n\t{\n\n\t\t/**\n\t\t * The current version of the repository (or independent).\n\t\t */\n\t\tversion?: string | \"independent\";\n\n\t\t/**\n\t\t * Specify which client to run commands with (change to \"yarn\" to run commands with yarn. Defaults to \"npm\".\n\t\t */\n\t\tnpmClient?: INpmClient;\n\n\t\tworkspaces?: (string | \"packages/*\")[];\n\t\tpackages?: (string | \"packages/*\")[];\n\n\t\tcommand?: ILernaJsonCommand,\n\t}>\n{\n\n}\n\nexport default ILernaJson\n"]}
@@ -0,0 +1,38 @@
1
+ import { IPackageJsonPublishConfig } from './types';
2
+ import { IBooleanString } from '../types';
3
+ import ILernaJson from '../../lerna-json';
4
+ export interface _IPackageJsonCore {
5
+ /**
6
+ * yarn workspaces
7
+ */
8
+ workspaces?: ILernaJson["packages"];
9
+ /**
10
+ * This is a set of config values that will be used at publish-time.
11
+ * It’s especially handy if you want to set the tag, registry or access,
12
+ * so that you can ensure that a given package is not tagged with “latest”,
13
+ * published to the global public registry or that a scoped module is private by default.
14
+ *
15
+ * Any config values can be overridden,
16
+ * but only “tag”, “registry” and “access” probably matter for the purposes of publishing.
17
+ */
18
+ publishConfig?: IPackageJsonPublishConfig;
19
+ /**
20
+ * https://github.com/bluelovers/ws-ts-type/pull/1
21
+ *
22
+ * If set to true, then npm will refuse to publish it.
23
+ */
24
+ private?: boolean | IBooleanString;
25
+ gitHead?: string;
26
+ /**
27
+ * https://segmentfault.com/a/1190000016365409
28
+ */
29
+ unpkg?: string;
30
+ browserslist?: string[];
31
+ browser?: string | Record<string, string> | Record<string, boolean>;
32
+ es2015?: string;
33
+ esm?: boolean;
34
+ 'react-native'?: string;
35
+ sideEffects?: boolean;
36
+ source?: string;
37
+ 'umd:main'?: string;
38
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=extend.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"extend.js","sourceRoot":"","sources":["extend.ts"],"names":[],"mappings":"","sourcesContent":["import { IPackageJsonPublishConfig } from './types';\nimport { IBooleanString } from '../types';\nimport ILernaJson from '../../lerna-json';\n\nexport interface _IPackageJsonCore\n{\n\n\t/**\n\t * yarn workspaces\n\t */\n\tworkspaces?: ILernaJson[\"packages\"];\n\n\t/**\n\t * This is a set of config values that will be used at publish-time.\n\t * It’s especially handy if you want to set the tag, registry or access,\n\t * so that you can ensure that a given package is not tagged with “latest”,\n\t * published to the global public registry or that a scoped module is private by default.\n\t *\n\t * Any config values can be overridden,\n\t * but only “tag”, “registry” and “access” probably matter for the purposes of publishing.\n\t */\n\tpublishConfig?: IPackageJsonPublishConfig;\n\n\t/**\n\t * https://github.com/bluelovers/ws-ts-type/pull/1\n\t *\n\t * If set to true, then npm will refuse to publish it.\n\t */\n\tprivate?: boolean | IBooleanString;\n\n\tgitHead?: string,\n\n\t/**\n\t * https://segmentfault.com/a/1190000016365409\n\t */\n\tunpkg?: string,\n\tbrowserslist?: string[],\n\tbrowser?: string | Record<string, string> | Record<string, boolean>,\n\tes2015?: string,\n\tesm?: boolean,\n\t'react-native'?: string,\n\tsideEffects?: boolean,\n\tsource?: string,\n\t'umd:main'?: string,\n\n}\n"]}
package/package-json.d.ts CHANGED
@@ -2,52 +2,19 @@
2
2
  * Created by user on 2019/5/18.
3
3
  */
4
4
  import type { JSONSchemaForNPMPackageJsonFiles as CoreProperties } from './types/package.json';
5
- import type { IPackageJsonDependenciesField, IDependency, IPackageJsonPublishConfig } from './lib/package-json/types';
6
- import type { ILernaJson } from './lerna-json';
7
- import type { ITSPartialRecord, ITSOverwrite } from 'ts-type/lib/type/record';
5
+ import type { IPackageJsonDependenciesField, IDependency } from './lib/package-json/types';
6
+ import type { ITSOverwrite } from 'ts-type/lib/type/record';
8
7
  import { IPackageJsonExtendYarn } from './lib/package-json/yarn';
9
- import { IBooleanString } from './lib/types';
8
+ import { ITSPartialRecord } from 'ts-type/lib/type/record/partial';
9
+ import { ITSOmitIndexSignatures } from 'ts-type/lib/helper/record/omit-index';
10
+ import { _IPackageJsonCore } from './lib/package-json/extend';
10
11
  export { EnumVersionValue2 } from './lib/package-json/types';
11
12
  export * from './lib/package-json/types';
12
13
  export declare type ILibPackageJson = typeof import('./types/package.json');
13
14
  /**
14
15
  * @example IPackageJson<unknown>
15
16
  */
16
- export interface IPackageJson<T = any> extends ITSOverwrite<CoreProperties, {
17
- /**
18
- * yarn workspaces
19
- */
20
- workspaces?: ILernaJson["packages"];
21
- /**
22
- * This is a set of config values that will be used at publish-time.
23
- * It’s especially handy if you want to set the tag, registry or access,
24
- * so that you can ensure that a given package is not tagged with “latest”,
25
- * published to the global public registry or that a scoped module is private by default.
26
- *
27
- * Any config values can be overridden,
28
- * but only “tag”, “registry” and “access” probably matter for the purposes of publishing.
29
- */
30
- publishConfig?: IPackageJsonPublishConfig;
31
- /**
32
- * https://github.com/bluelovers/ws-ts-type/pull/1
33
- *
34
- * If set to true, then npm will refuse to publish it.
35
- */
36
- private?: boolean | IBooleanString;
37
- gitHead?: string;
38
- /**
39
- * https://segmentfault.com/a/1190000016365409
40
- */
41
- unpkg?: string;
42
- browserslist?: string[];
43
- browser?: string | Record<string, string> | Record<string, boolean>;
44
- es2015?: string;
45
- esm?: boolean;
46
- 'react-native'?: string;
47
- sideEffects?: boolean;
48
- source?: string;
49
- 'umd:main'?: string;
50
- }>, ITSPartialRecord<IPackageJsonDependenciesField, IDependency>, IPackageJsonExtendYarn {
51
- [k: string]: any;
17
+ export interface IPackageJson<T = any> extends ITSOverwrite<ITSOmitIndexSignatures<CoreProperties>, _IPackageJsonCore & ITSPartialRecord<IPackageJsonDependenciesField, IDependency> & IPackageJsonExtendYarn> {
18
+ [k: string]: T;
52
19
  }
53
20
  export default IPackageJson;
@@ -1 +1 @@
1
- {"version":3,"file":"package-json.js","sourceRoot":"","sources":["package-json.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;AASH,kDAA6D;AAApD,0GAAA,iBAAiB,OAAA;AAC1B,2DAAyC","sourcesContent":["/**\n * Created by user on 2019/5/18.\n */\n\nimport type { JSONSchemaForNPMPackageJsonFiles as CoreProperties, Dependency } from './types/package.json';\nimport type { IPackageJsonDependenciesField, IDependency, IPackageJsonPublishConfig } from './lib/package-json/types';\nimport type { ILernaJson } from './lerna-json';\nimport type { ITSPartialRecord, ITSOverwrite } from 'ts-type/lib/type/record';\nimport { IPackageJsonExtendYarn } from './lib/package-json/yarn';\nimport { IBooleanString } from './lib/types';\n\nexport { EnumVersionValue2 } from './lib/package-json/types';\nexport * from './lib/package-json/types';\n\nexport type ILibPackageJson = typeof import('./types/package.json');\n\n/**\n * @example IPackageJson<unknown>\n */\nexport interface IPackageJson<T = any> extends ITSOverwrite<CoreProperties, {\n\n\t/**\n\t * yarn workspaces\n\t */\n\tworkspaces?: ILernaJson[\"packages\"];\n\n\t/**\n\t * This is a set of config values that will be used at publish-time.\n\t * It’s especially handy if you want to set the tag, registry or access,\n\t * so that you can ensure that a given package is not tagged with “latest”,\n\t * published to the global public registry or that a scoped module is private by default.\n\t *\n\t * Any config values can be overridden,\n\t * but only “tag”, “registry” and “access” probably matter for the purposes of publishing.\n\t */\n\tpublishConfig?: IPackageJsonPublishConfig;\n\n\t/**\n\t * https://github.com/bluelovers/ws-ts-type/pull/1\n\t *\n\t * If set to true, then npm will refuse to publish it.\n\t */\n\tprivate?: boolean | IBooleanString;\n\n\tgitHead?: string,\n\n\t/**\n\t * https://segmentfault.com/a/1190000016365409\n\t */\n\tunpkg?: string,\n\tbrowserslist?: string[],\n\tbrowser?: string | Record<string, string> | Record<string, boolean>,\n\tes2015?: string,\n\tesm?: boolean,\n\t'react-native'?: string,\n\tsideEffects?: boolean,\n\tsource?: string,\n\t'umd:main'?: string,\n\n}>, ITSPartialRecord<IPackageJsonDependenciesField, IDependency>, IPackageJsonExtendYarn\n{\n/*\n\t//[k in Exclude<string, keyof CoreProperties>]: T;\n\t[k: string]: unknown;\n */\n\t[k: string]: any;\n}\n\nexport default IPackageJson\n"]}
1
+ {"version":3,"file":"package-json.js","sourceRoot":"","sources":["package-json.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;AAYH,kDAA6D;AAApD,0GAAA,iBAAiB,OAAA;AAC1B,2DAAyC","sourcesContent":["/**\n * Created by user on 2019/5/18.\n */\n\nimport type { JSONSchemaForNPMPackageJsonFiles as CoreProperties, Dependency } from './types/package.json';\nimport type { IPackageJsonDependenciesField, IDependency, IPackageJsonPublishConfig } from './lib/package-json/types';\nimport type { ILernaJson } from './lerna-json';\nimport type { ITSOverwrite } from 'ts-type/lib/type/record';\nimport { IPackageJsonExtendYarn } from './lib/package-json/yarn';\nimport { IBooleanString } from './lib/types';\nimport { ITSPartialRecord } from 'ts-type/lib/type/record/partial';\nimport { ITSOmitIndexSignatures } from 'ts-type/lib/helper/record/omit-index';\nimport { _IPackageJsonCore } from './lib/package-json/extend';\n\nexport { EnumVersionValue2 } from './lib/package-json/types';\nexport * from './lib/package-json/types';\n\nexport type ILibPackageJson = typeof import('./types/package.json');\n\n/**\n * @example IPackageJson<unknown>\n */\nexport interface IPackageJson<T = any> extends ITSOverwrite<ITSOmitIndexSignatures<CoreProperties>, _IPackageJsonCore & ITSPartialRecord<IPackageJsonDependenciesField, IDependency> & IPackageJsonExtendYarn>\n{\n/*\n\t//[k in Exclude<string, keyof CoreProperties>]: T;\n\t[k: string]: unknown;\n */\n\t// @ts-ignore\n\t[k: string]: T;\n}\n\nexport default IPackageJson\n"]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ts-type/package-dts",
3
- "version": "1.0.50",
3
+ "version": "1.0.55",
4
4
  "private": false,
5
5
  "description": "A Typescript type definition for NPM package json",
6
6
  "keywords": [
@@ -61,20 +61,20 @@
61
61
  "update:schema": "npx ts-node ./script/index"
62
62
  },
63
63
  "dependencies": {
64
- "@types/semver": "^7.3.4",
65
- "ts-type": "^1.2.39"
64
+ "@types/semver": "^7.3.9",
65
+ "ts-type": "^2.1.1"
66
66
  },
67
67
  "devDependencies": {
68
- "axios": "^0.21.1",
68
+ "axios": "^0.24.0",
69
69
  "bluebird": "^3.7.2",
70
- "dot-values2": "^2.0.3",
71
- "fs-extra": "^9.0.1",
72
- "json-schema-to-typescript": "^10.1.1"
70
+ "dot-values2": "^2.0.5",
71
+ "fs-extra": "^10.0.0",
72
+ "json-schema-to-typescript": "^10.1.5"
73
73
  },
74
74
  "publishConfig": {
75
75
  "access": "public"
76
76
  },
77
- "gitHead": "a9afeb2513c2967c1f6f2c56260b5158aafe164a",
77
+ "gitHead": "fcdfde9b98f1d9e0c2386f2189cdfd7cad6d5529",
78
78
  "sharedDependencies": {
79
79
  "eslint-config-bluelovers": "latest"
80
80
  }
@@ -558,6 +558,11 @@
558
558
  "description": "Resolutions is used to support selective version resolutions, which lets you define custom package versions or ranges inside your dependencies. See: https://classic.yarnpkg.com/en/docs/selective-version-resolutions",
559
559
  "type": "object"
560
560
  },
561
+ "packageManager": {
562
+ "description": "Defines which package manager is expected to be used when working on the current project. This field is currently experimental and needs to be opted-in; see https://nodejs.org/api/corepack.html",
563
+ "type": "string",
564
+ "pattern": "(npm|pnpm|yarn)@\\d+\\.\\d+\\.\\d+(-.+)?"
565
+ },
561
566
  "engines": {
562
567
  "type": "object",
563
568
  "properties": {
@@ -230,7 +230,8 @@
230
230
  "xcode12.2",
231
231
  "xcode12.3",
232
232
  "xcode12.4",
233
- "xcode12.5"
233
+ "xcode12.5",
234
+ "xcode13.1"
234
235
  ]
235
236
  },
236
237
  "envVars": {
@@ -130,7 +130,7 @@
130
130
  },
131
131
  "synchronousWatchDirectory": {
132
132
  "description": "Synchronously call callbacks and update the state of directory watchers on platforms that don`t support recursive watching natively.",
133
- "type": "string",
133
+ "type": "boolean",
134
134
  "markdownDescription": "Synchronously call callbacks and update the state of directory watchers on platforms that don`t support recursive watching natively.\n\nSee more: https://www.typescriptlang.org/tsconfig#synchronousWatchDirectory"
135
135
  },
136
136
  "excludeFiles": {
@@ -270,10 +270,10 @@
270
270
  "markdownDescription": "Specify the JSX Fragment reference used for fragments when targeting React JSX emit e.g. 'React.Fragment' or 'Fragment'.\n\nSee more: https://www.typescriptlang.org/tsconfig#jsxFragmentFactory"
271
271
  },
272
272
  "jsxImportSource": {
273
- "description": "Specify module specifier used to import the JSX factory functions when using `jsx: react-jsx*`.`",
273
+ "description": "Specify module specifier used to import the JSX factory functions when using `jsx: react-jsx`.",
274
274
  "type": "string",
275
275
  "default": "react",
276
- "markdownDescription": "Specify module specifier used to import the JSX factory functions when using `jsx: react-jsx*`.`\n\nSee more: https://www.typescriptlang.org/tsconfig#jsxImportSource"
276
+ "markdownDescription": "Specify module specifier used to import the JSX factory functions when using `jsx: react-jsx`.\n\nSee more: https://www.typescriptlang.org/tsconfig#jsxImportSource"
277
277
  },
278
278
  "listFiles": {
279
279
  "description": "Print all of the files read during the compilation.",
@@ -300,7 +300,10 @@
300
300
  "ES2015",
301
301
  "ES2020",
302
302
  "ESNext",
303
- "None"
303
+ "None",
304
+ "es2022",
305
+ "node12",
306
+ "nodenext"
304
307
  ]
305
308
  },
306
309
  {
@@ -434,6 +437,12 @@
434
437
  "default": false,
435
438
  "markdownDescription": "Disable resolving symlinks to their realpath. This correlates to the same flag in node.\n\nSee more: https://www.typescriptlang.org/tsconfig#preserveSymlinks"
436
439
  },
440
+ "preserveValueImports": {
441
+ "description": "Preserve unused imported values in the JavaScript output that would otherwise be removed",
442
+ "type": "boolean",
443
+ "default": false,
444
+ "markdownDescription": "Preserve unused imported values in the JavaScript output that would otherwise be removed\n\nSee more: https://www.typescriptlang.org/tsconfig#preserveValueImports"
445
+ },
437
446
  "preserveWatchOutput": {
438
447
  "description": "Disable wiping the console in watch mode",
439
448
  "type": "boolean",
@@ -780,7 +789,8 @@
780
789
  "ES2021.Promise",
781
790
  "ES2021.String",
782
791
  "ES2021.WeakRef",
783
- "ESNext.WeakRef"
792
+ "ESNext.WeakRef",
793
+ "es2021.intl"
784
794
  ]
785
795
  },
786
796
  {
@@ -1008,7 +1018,7 @@
1008
1018
  "tsNodeDefinition": {
1009
1019
  "properties": {
1010
1020
  "ts-node": {
1011
- "description": "ts-node options. See also: https://github.com/TypeStrong/ts-node#configuration-options\n\nts-node offers TypeScript execution and REPL for node.js, with source map support.",
1021
+ "description": "ts-node options. See also: https://typestrong.org/ts-node/docs/configuration\n\nts-node offers TypeScript execution and REPL for node.js, with source map support.",
1012
1022
  "properties": {
1013
1023
  "compiler": {
1014
1024
  "default": "typescript",
@@ -1036,6 +1046,10 @@
1036
1046
  "description": "Emit output files into `.ts-node` directory.",
1037
1047
  "type": "boolean"
1038
1048
  },
1049
+ "experimentalReplAwait": {
1050
+ "description": "Allows the usage of top level await in REPL.\n\nUses node's implementation which accomplishes this with an AST syntax transformation.\n\nEnabled by default when tsconfig target is es2018 or above. Set to false to disable.\n\n**Note**: setting to `true` when tsconfig target is too low will throw an Error. Leave as `undefined`\nto get default, automatic behavior.",
1051
+ "type": "boolean"
1052
+ },
1039
1053
  "files": {
1040
1054
  "default": false,
1041
1055
  "description": "Load \"files\" and \"include\" from `tsconfig.json` on startup.\n\nDefault is to override `tsconfig.json` \"files\" and \"include\" to only include the entrypoint script.",
@@ -1066,6 +1080,10 @@
1066
1080
  "description": "Logs TypeScript errors to stderr instead of throwing exceptions.",
1067
1081
  "type": "boolean"
1068
1082
  },
1083
+ "moduleTypes": {
1084
+ "type": "object",
1085
+ "description": "Override certain paths to be compiled and executed as CommonJS or ECMAScript modules.\nWhen overridden, the tsconfig \"module\" and package.json \"type\" fields are overridden.\nThis is useful because TypeScript files cannot use the .cjs nor .mjs file extensions;\nit achieves the same effect.\n\nEach key is a glob pattern following the same rules as tsconfig's \"include\" array.\nWhen multiple patterns match the same file, the last pattern takes precedence.\n\n`cjs` overrides matches files to compile and execute as CommonJS.\n`esm` overrides matches files to compile and execute as native ECMAScript modules.\n`package` overrides either of the above to default behavior, which obeys package.json \"type\" and\ntsconfig.json \"module\" options."
1086
+ },
1069
1087
  "preferTsExts": {
1070
1088
  "default": false,
1071
1089
  "description": "Re-order file extensions so that TypeScript imports are preferred.\n\nFor example, when both `index.js` and `index.ts` exist, enabling this option causes `require('./index')` to resolve to `index.ts` instead of `index.js`",
@@ -1083,6 +1101,15 @@
1083
1101
  },
1084
1102
  "type": "array"
1085
1103
  },
1104
+ "scope": {
1105
+ "default": false,
1106
+ "description": "Scope compiler to files within `scopeDir`.",
1107
+ "type": "boolean"
1108
+ },
1109
+ "scopeDir": {
1110
+ "default": "First of: `tsconfig.json` \"rootDir\" if specified, directory containing `tsconfig.json`, or cwd if no `tsconfig.json` is loaded.",
1111
+ "type": "string"
1112
+ },
1086
1113
  "skipIgnore": {
1087
1114
  "default": false,
1088
1115
  "description": "Skip ignore check, so that compilation will be attempted for all files with matching extensions.",
@@ -1,7 +1,8 @@
1
1
  {
2
2
  "extends": "@bluelovers/tsconfig/esm/mapfile.json",
3
3
  "compilerOptions": {
4
- "skipLibCheck": true
4
+ "skipLibCheck": true,
5
+ "noPropertyAccessFromIndexSignature": false
5
6
  },
6
7
  "exclude": [
7
8
  "node_modules",
@@ -1 +1 @@
1
- {"program":{"fileNames":["c:/users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es5.d.ts","c:/users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2015.d.ts","c:/users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2016.d.ts","c:/users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2017.d.ts","c:/users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2018.d.ts","c:/users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2019.d.ts","c:/users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.dom.d.ts","c:/users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.dom.iterable.d.ts","c:/users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.webworker.importscripts.d.ts","c:/users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.scripthost.d.ts","c:/users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2015.core.d.ts","c:/users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2015.collection.d.ts","c:/users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2015.generator.d.ts","c:/users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2015.iterable.d.ts","c:/users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2015.promise.d.ts","c:/users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2015.proxy.d.ts","c:/users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2015.reflect.d.ts","c:/users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2015.symbol.d.ts","c:/users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","c:/users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2016.array.include.d.ts","c:/users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2017.object.d.ts","c:/users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","c:/users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2017.string.d.ts","c:/users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2017.intl.d.ts","c:/users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","c:/users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","c:/users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","c:/users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2018.intl.d.ts","c:/users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2018.promise.d.ts","c:/users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2018.regexp.d.ts","c:/users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2019.array.d.ts","c:/users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2019.object.d.ts","c:/users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2019.string.d.ts","c:/users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2019.symbol.d.ts","c:/users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2020.bigint.d.ts","c:/users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.esnext.intl.d.ts","c:/users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2019.full.d.ts","./types/eslintrc.json.d.ts","./eslintrc-json.ts","./types/package.json.d.ts","../../node_modules/@types/semver/classes/semver.d.ts","../../node_modules/@types/semver/functions/parse.d.ts","../../node_modules/@types/semver/functions/valid.d.ts","../../node_modules/@types/semver/functions/clean.d.ts","../../node_modules/@types/semver/functions/inc.d.ts","../../node_modules/@types/semver/functions/diff.d.ts","../../node_modules/@types/semver/functions/major.d.ts","../../node_modules/@types/semver/functions/minor.d.ts","../../node_modules/@types/semver/functions/patch.d.ts","../../node_modules/@types/semver/functions/prerelease.d.ts","../../node_modules/@types/semver/functions/compare.d.ts","../../node_modules/@types/semver/functions/rcompare.d.ts","../../node_modules/@types/semver/functions/compare-loose.d.ts","../../node_modules/@types/semver/functions/compare-build.d.ts","../../node_modules/@types/semver/functions/sort.d.ts","../../node_modules/@types/semver/functions/rsort.d.ts","../../node_modules/@types/semver/functions/gt.d.ts","../../node_modules/@types/semver/functions/lt.d.ts","../../node_modules/@types/semver/functions/eq.d.ts","../../node_modules/@types/semver/functions/neq.d.ts","../../node_modules/@types/semver/functions/gte.d.ts","../../node_modules/@types/semver/functions/lte.d.ts","../../node_modules/@types/semver/functions/cmp.d.ts","../../node_modules/@types/semver/functions/coerce.d.ts","../../node_modules/@types/semver/classes/comparator.d.ts","../../node_modules/@types/semver/classes/range.d.ts","../../node_modules/@types/semver/functions/satisfies.d.ts","../../node_modules/@types/semver/ranges/max-satisfying.d.ts","../../node_modules/@types/semver/ranges/min-satisfying.d.ts","../../node_modules/@types/semver/ranges/to-comparators.d.ts","../../node_modules/@types/semver/ranges/min-version.d.ts","../../node_modules/@types/semver/ranges/valid.d.ts","../../node_modules/@types/semver/ranges/outside.d.ts","../../node_modules/@types/semver/ranges/gtr.d.ts","../../node_modules/@types/semver/ranges/ltr.d.ts","../../node_modules/@types/semver/ranges/intersects.d.ts","../../node_modules/@types/semver/ranges/simplify.d.ts","../../node_modules/@types/semver/ranges/subset.d.ts","../../node_modules/@types/semver/internals/identifiers.d.ts","../../node_modules/@types/semver/index.d.ts","./lib/package-json/publishconfig.ts","./lib/package-json/types.ts","./types/lerna.json.d.ts","../ts-type/lib/generic.ts","../ts-type/lib/type/base.ts","../ts-type/lib/helper/unpacked.ts","../ts-type/lib/helper.ts","../ts-type/lib/helper/infer.ts","../ts-type/lib/helper/intersection.ts","../ts-type/lib/helper/typeof.ts","../ts-type/lib/helper/key-value.ts","../ts-type/lib/helper/overwrite.ts","../ts-type/lib/helper/readonly.ts","../ts-type/lib/helper/record.ts","../ts-type/lib/helper/tuple.ts","../ts-type/lib/internal/filter.ts","../ts-type/lib/logic/any.ts","../../node_modules/@types/bluebird/index.d.ts","../ts-type/lib/type/bluebird.ts","../ts-type/lib/type/decorators.ts","../ts-type/lib/type/promise.ts","../ts-type/lib/type/proxy.ts","../ts-type/lib/index.d.ts","../ts-type/lib/helper/filter.ts","../ts-type/lib/type/record.ts","./lib/lerna-json/types.ts","./lib/types.ts","./lerna-json.ts","./lib/package-json/yarn.ts","./package-json.ts","./types/tsconfig.json.d.ts","./tsconfig-json.ts","./types/travis.json.d.ts","./travis-json.ts","./index.ts","../../node_modules/@types/node/globals.d.ts","../../node_modules/@types/node/assert.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/dns.d.ts","../../node_modules/@types/node/domain.d.ts","../../node_modules/@types/node/events.d.ts","../../node_modules/@types/node/fs.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/repl.d.ts","../../node_modules/@types/node/stream.d.ts","../../node_modules/@types/node/string_decoder.d.ts","../../node_modules/@types/node/timers.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/worker_threads.d.ts","../../node_modules/@types/node/zlib.d.ts","../../node_modules/@types/node/base.d.ts","../../node_modules/@types/node/ts3.2/util.d.ts","../../node_modules/@types/node/ts3.2/globals.d.ts","../../node_modules/@types/node/ts3.2/index.d.ts","../../node_modules/@types/fs-extra/index.d.ts","../../node_modules/axios/index.d.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@apidevtools/json-schema-ref-parser/lib/index.d.ts","../../node_modules/json-schema-ref-parser/index.d.ts","../../node_modules/@types/prettier/index.d.ts","../../node_modules/json-schema-to-typescript/dist/src/types/jsonschema.d.ts","../../node_modules/json-schema-to-typescript/dist/src/index.d.ts","./script/util.ts","../../node_modules/dot-values2/module.d.ts","../../node_modules/dot-values2/lib/util.d.ts","../../node_modules/dot-values2/lib/get.d.ts","../../node_modules/dot-values2/lib/set.d.ts","../../node_modules/dot-values2/lib/has.d.ts","../../node_modules/dot-values2/lib/unset.d.ts","../../node_modules/dot-values2/lib/index.d.ts","./schema/package.json","./schema/lerna.json","./script/index.ts","./package.json","./test/temp.ts","./test/temp2.ts","./test/spec/lerna-json.ts","./test/spec/package-json.ts","../../node_modules/@types/color-name/index.d.ts","../../node_modules/@types/minimatch/index.d.ts","../../node_modules/@types/glob/index.d.ts","../../node_modules/@types/minimist/index.d.ts","../../node_modules/@types/normalize-package-data/index.d.ts"],"fileInfos":[{"version":"aa9fb4c70f369237c2f45f9d969c9a59e0eae9a192962eb48581fe864aa609db","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84",{"version":"e9dfaf641bd94c4f5d09f01044ab5b0a2b6817daf3b6468cfdb8c3183cc06c7b","affectsGlobalScope":true},{"version":"4a4b94551e714ac6b524da804ddbdb8dd7eef9c57da73eaee4c01ceae5125cc3","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"51b8b27c21c066bf877646e320bf6a722b80d1ade65e686923cd9d4494aef1ca","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"2c8c5ee58f30e7c944e04ab1fb5506fdbb4dd507c9efa6972cf4b91cec90c503","affectsGlobalScope":true},{"version":"2bb4b3927299434052b37851a47bf5c39764f2ba88a888a107b32262e9292b7c","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"df9c8a72ca8b0ed62f5470b41208a0587f0f73f0a7db28e5a1272cf92537518e","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"93544ca2f26a48716c1b6c5091842cad63129daac422dfa4bc52460465f22bb1","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"4632665b87204bb1caa8b44d165bce0c50dfab177df5b561b345a567cabacf9a","affectsGlobalScope":true},"1f03b495671c3a1bd24510f38b8947f0991dfd6bf0278c68eca14af15b306e1f","bb92d6222cdcae353c55bfcc33d0dd1f2defb81e9373602f920e72a66087ec33","f8047e89050e511c103095417dc4241b692da40f0ce971732117874d648161e4","eac59325e08b0b749c40eb2d875b660068908c38571482e4e9a9b6cd7e6da400","d9e55d93aa33fad61bd5c63800972d00ba8879ec5d29f6f3bce67d16d86abc33","2ac9c8332c5f8510b8bdd571f8271e0f39b0577714d5e95c1e79a12b2616f069","42c21aa963e7b86fa00801d96e88b36803188018d5ad91db2a9101bccd40b3ff","d31eb848cdebb4c55b4893b335a7c0cca95ad66dee13cbb7d0893810c0a9c301","77c1d91a129ba60b8c405f9f539e42df834afb174fe0785f89d92a2c7c16b77a","c544d81603149987796b24cca297c965db427b84b2580fb27e52fb37ddc1f470","906c751ef5822ec0dadcea2f0e9db64a33fb4ee926cc9f7efa38afe5d5371b2a","5387c049e9702f2d2d7ece1a74836a14b47fbebe9bbeb19f94c580a37c855351","c68391fb9efad5d99ff332c65b1606248c4e4a9f1dd9a087204242b56c7126d6","758e82e32536b66a139e34bb7e067dd860b563070f9746a0ae5cd802588f4def","e8b02b879754d85f48489294f99147aeccc352c760d95a6fe2b6e49cd400b2fe","9f6908ab3d8a86c68b86e38578afc7095114e66b2fc36a2a96e9252aac3998e0","0eedb2344442b143ddcd788f87096961cd8572b64f10b4afc3356aa0460171c6","9eb2875a1e4c583066af7d6194ea8162191b2756e5d87ccb3c562fdf74d06869","c68baff4d8ba346130e9753cefe2e487a16731bf17e05fdacc81e8c9a26aae9d","2cd15528d8bb5d0453aa339b4b52e0696e8b07e790c153831c642c3dea5ac8af","479d622e66283ffa9883fbc33e441f7fc928b2277ff30aacbec7b7761b4e9579","ade307876dc5ca267ca308d09e737b611505e015c535863f22420a11fffc1c54","f8cdefa3e0dee639eccbe9794b46f90291e5fd3989fcba60d2f08fde56179fb9","86c5a62f99aac7053976e317dbe9acb2eaf903aaf3d2e5bb1cafe5c2df7b37a8","2b300954ce01a8343866f737656e13243e86e5baef51bd0631b21dcef1f6e954","a2d409a9ffd872d6b9d78ead00baa116bbc73cfa959fce9a2f29d3227876b2a1","b288936f560cd71f4a6002953290de9ff8dfbfbf37f5a9391be5c83322324898","61178a781ef82e0ff54f9430397e71e8f365fc1e3725e0e5346f2de7b0d50dfa","5349dc09f88a35d52dc0bf24c44ebfd10dcb13e052d79133a56e1ac127162a4d","6eef5113135a0f2bbac8259909a5bbb7666bcde022c28f4ab95145623cbe1f72","058b8dd97b7c67b6bf33e7bda7b1e247b019b675d4b6449d14ac002091a8b4f8","89c8a7b88c378663a8124664f2d9b8c2887e186b55aa066edf6d67177ca1aa04","5a30ba65ad753eb2ef65355dbb3011b28b192cb9df2ef0b5f595b51ca7faf353","5192f9a6469f849e0863616b668fde54bcd6704394b4bfbd115691865f66d761","f41d30972724714763a2698ae949fbc463afb203b5fa7c4ad7e4de0871129a17","0123340327efb174818f4b78bf6a9b12f8470754e6afac9e4d32a2ad27521f7b","9795e0a3a45d5b6f1a791ee54b7c8b58bc931e8900966cea2dff9c5bae56073b","5890be29879d02424b7654f40592915189034948f7a18c5ad121c006d4e92811","0ab49086f10c75a1cb3b18bffe799dae021774146d8a2d5a4bb42dda67b64f9b","81c77839e152b8f715ec67b0a8b910bcc2d6cf916794c3519f8798c40efd12ac","a868a534ba1c2ca9060b8a13b0ffbbbf78b4be7b0ff80d8c75b02773f7192c29","464843c00fb3dd4735b28255c5c9fe713f16b8e47a3db09ba1647687440f7aef","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","03d2e70c34640b553ed580286eb234835695ea1e473d837a4ced672648d453cd","4c3afd5ad9d0d77157d3dce6746cd171807940e63dda3362d65454d374325bf4","4128053f212ffd463294b7d1d62b36002f25f6faa454b4a6bc64118f6d7312e4","2fa343d4a34bcab281d37cd89e34228cbed2d07ea2b410187d047b3937d5d902","f44c7e8edf452ef8eebea847c4a72f92f5a1afe341d45411ded867513d69011d","50b15ab26f5b7fac85ee59357fb51e787c63c95b31b78a16ed679798b48c663a","bb0e4b340003613a761020eeaeb2b427d19e830dbacfe94321087fd829f6b78c","9175e6783741471e695e9514a70b23d3cf083a60cfab803f24db898e772d1ca8","2bd1aeba3c6a7f6c873f5633a7f21a4f85b5c691cf40ab7d8a91de9b7255e109","938119e25d271de4fcf8be0583b4205ee279839ddc9b870206dee44bc9df2d29","30a0a331dc5ca5c3d34a3f3b6bbd2e7badc62c1effe393650af1d78afcf31c76","17dec98c15b12786d26552f0b4eed667d1850a9f169a6a955974a616f86c7839","29e2fa65c45b57b8be7918cb4085ea14a11f50cab9f2d15f634616e19baaf5b1","4cb8ecd4c95174c75c85ff85de36ca89205d0d05cb423bbc0edfa51071558db9","bcfe51d2b2c5bd5751537f76cc937669a46a58e65da00114ad7c368711d066e2","ade25ac7b51310d64d004d5811af33603a8ed53812803dd356624a2075e0be2f","77851c3820f174bbd2aef16fb0c393783ee9468a360756db96c8646a6c9763d9","63199d76f6cc769b242566bca25e6b7300d1c9c00569f1ad675eba6b74e97040","1a6100f908d642fe1c74d1354b0e12ee647655b8d355159a1bb4c62ae874ccea","12dd0bf46717f4d609922d6f6272e9207b07bccbfc6ebf6956271f23f3bde7ea","0bc03e521b73792d4512976dbddd8a750ddce9b06b13cf2c38685c78b97fdcc0","c8fbcf60d81581b50851f6ab8b59bd365916fdd44a0620293d048c79097f63d7","8f752c50cd5bb26347ce6e53d2ed502494fdfc734aab266cb739dbec6f516b42","66df25740434db3916063b63f26f0639bb9e06ee1e6fb5c2f0632a9dffc3ea80","c973fc8a0db3d7b52ae3a1015e52b3ee59d6314b15d0cb03a8e1227b3ed4a93e","0db27daed1addc9172d5b4386897cf1a261b4d11bffc712b366008e838380b7d","b1a9246a8270b80555ac859ed4ce87155fda2cc5875d826496390d87cb4eb828","d17688b682b07072256d81ecd8001e7a10a871e286389066d8b18f4bf51afcd9","e4cd5bde9dfb972067acf9a399fe644d484c2559707140448d156dc941f3186d","6bf6d553e086ea3ba4067abdb46a11e437e410f58c8f60182c24b947a7897e9e","c4bd44237816f4305bc377c3b027b575b4797d5ac1b90761ca4cfea0d1fe3ebf","759da608f629098ed48470a83c2a3b069efff679efa68097bf77c2f9106295b0",{"version":"8c30ad5a90bcc7563c21ff7bd9daf554a623a499816f275f57ca56a45eefe150","signature":"c9d1dd1426720c8e5e7a4f0e9752af314121a2d571cac1c895198ca597a56f88"},"22371647eb7e3e5798250bdac9033243ab30fdbf642b0c120f949eff766b56cf","da3fa2afe8b071a88b08b37612cb87ac539b466ece69e8932dac2fabebd82c49","294554913f43e53471148f2c56b32ec7348fd88355e6d7e01bb68ecb5cd34a7f",{"version":"3af134c0480536f901a30692d216bd29712a3869fe38a7be066ea1eef34a8561","affectsGlobalScope":true},"58a52f282f1dad18179023804c1f3a7536bf875748a0a314abd43f60fd5b244f","138476cfdccbb9e2c7e06602bc216af843a56c4f3469a79106bc660ba94bd66a","fe892fea1e75a442fffb4a604d7eeb451e858787a9f2f01c4e83bf12a3b5048d","c5a3c14cb11afb48d405562e6843145caa67c60be9738f408cd7977ce30a0b00","ce629710e5e58724902b753212e97861fd73e2aa09f5d88cb6d55dc763cf8c8a","525c8fc510d9632d2a0a9de2d41c3ac1cdd79ff44d3b45c6d81cacabb683528d","b952021e804dcd9cb5e5552e1ec8bf9f479b61e20da5641e2a542fe77db9a598","a15466cfe77b4f8bcd936634d3d2828ee340819c3f136d31f87d6084e86994d0","b6c6861bccf209a98eeddb99bdb7bd987fb29fc52130d5d9fd2f79d3607a0a7a","896cd7d58e9d832392a6e374a8f8b64f142089b4d2678a2c90fd8d1d49128677","d5b7c8819ce1bd31a45f7675309e145ec28e3aa1b60a8e0637fd0e8916255baa","cff7f1ff41519a28adfedb85b9d91325e13d7993bebcfd0dd9ce30c3ed1240bb","10c5b29dccf29ea7f9aea324ab09b0e2237d6506bd8e28538963b28855819616","cc4cd9d8af7f5689b5df3c91d0fc287fafbd89e6e305183da28a6877a8aa08a8","28fdca6c7a3d5dd62c738461051ef345b50d167efab39dceb2fcc9a079db1b07","dacbe08610729f6343ea9880ea8e737c6d7a6efa4a318d8f6acaf85db4aceed6","7f71142177d3c98370b31751e3d320c9743ed28eee215acb88d8e0d2a31e321e","03394bf8deb8781b490ae9266a843fbdf00647947d79e25fcbf1d89a9e9c8a66","cc5fac2b9e45a6670b96fd32cb42c97e0d4a7b2ee12c87963c6fe0f55fa84f50","1a6016bd905855b2b45881e9edbd7ab8c7175f8bcbb711ff06989c4bcdc75486","5fb30076f0e0e5744db8993648bfb67aadd895f439edad5cce039127a87a8a36","27ef4001526ee9d8afa57687a60bb3b59c52b32d29db0a2260094ab64726164f","3a8848a9c307429b861402cc69bc472ffe0c05b86474fc158723169161e16389","30ec6f9c683b988c3cfaa0c4690692049c4e7ed7dc6f6e94f56194c06b86f5e1","b610b39b7d42b8e8359875ce77c3149d657bbaa6c9058beb655af805efb581b3","94cf93922adcc9cb4acf11d8d71641af728de919a50ae55d8e83159afea1a42c","65dbe15ed8a8ed5d4707a63868178dc38111cfc06de28a2e50713ca017a9c157","15087156b728a1bdf46de0e1299f904c6a658af37f80851f6fe76fb21bb99b65","17e157df6125098a1a34eb4d201ee4ac03bbe97e471ab5627bb2c40fce555948","b40652bf8ce4a18133b31349086523b219724dca8df3448c1a0742528e7ad5b9","8fd6756e8a6fac64089e19e4fbe822bcfafa62f79b237172288eaa1379e84083","978aecd2e6bc2ac094e9a35eda98ff8586713857b3655e7c98ca5ed8f7d50662","0fd8dac24f12d9fd1fcc275200dd1b6771072f20331a07b18f7dbcbe20f7d3f4","1e3da92862604b1f7a32265169f9aa712c4567742d42597704e04ae3e07019e7","20e55abae3dd750a85fda7c4d140670ada679c3d5b640de5e4f3eaafcee18a0d","6ad2dd29dbf3aea031062298e9978d4b2a1fadd0997eb9d8caaf95aaa89e7033","f98df5ec124f441b465332271d0b083aeec815cd3c92d9249b9739e6318477a9","16de20ae20cd1d948409a56b55832f3d416c66c8cb44bb8475e1e9db14d8e402","f91189e04264b0e41ee96ff96661c3871e739b90156df2f2288da7a81019dcd9","6622f76993bdfeaacb947ba7c4cf26f2e5c5194194d02d792c3cba4174cd8fce","4f54f0a9dd3b644c99ec32b32f8804d5978bc854799b228ae9c467bf3c84c64c",{"version":"ce6b191c382ee19f23678b8c364484627bcf424e8f408357a2f5530fb8d52a45","affectsGlobalScope":true},"765fc34423b93c2ab763670d8d11d99e5f47387c13c161d6f1640dd6d91b7d1c","d5c03e5866400953db3ef99447cc29bc3bac083171e128fd87a25c09defd2503","0d892f035dbee4534f0ba096407136877595ca592f67ec9bb8a5c912b9c967e8","b2be568d8ce95fcb26eebd04c035d94825655fdf689bf67d799f5ff8cbbb1024","36733e76205802ab4fbd3d66514cf7d05ae634fec96bfbbdeaebd1bf939b5be7","ef2347ab5b328013eb07a25d7689ca77a8728788ff2e625092844ae5566c29af","c4efa4df1372e991aa44b70b8d87b48865d94ecd26e76025854f2273df155253","67bec1ef11c1e97f6f4f78df7aaa48ac13321e937c1f6e3a8cac9fcbafa66c5e","279752b695159b05f542c9e092a943aad787b393e0eeabea72bb14b78141733f","da2342a5667d78aca7d4021fb040e588d82d1f448e4680d036cddd93c3feac52","b32dbd9a355452b1e36f5bfd99ac857eedefe556a704a78a76f53ecd8884f6a1","5e451325bd82b13b5e14c219afe4a24e8bf970fdd8f96e8a6b3ed6991f659b0a","265158b08e92c8b44b6bf16f4e223d5fa354a17bb052df13deb3f340bb8fc525","a396bce27cb74c23946b23b3143c3585d9817b9733a7ea117481fdfea3a2ae8e","bdaee3b9c26d2f97fb49b925d725654106b30b1016fb0bb9361bdd66188d386d","e60aaf372df8437098eaabd1cdfeb37980bec7e64f5cdc491b7db049c4e93e94","c514916c76446f935ffd0a15b7c4af30677641f749b8ac1f52e35ac9f16349bc","160bf91d949eb0da8dce1dafaf4aeda2450b079285801469866d49136a7a1d25","5a721e414c8cb8c64762d76b93a86f5fb0b0ee7ef92f738cda36e34acc426188","a3c72791f4e8be2b565d0282b34be5c25a7e7f08008e4c0d88c9a98005e66f65",{"version":"2fc659f30d42a0fd5c998ad8b3c3d445cbdcc37015c179d7d2cb05e5b0b175dc","signature":"306d42a9623c2ec540a3c0c8443f56b33efb547b761adb90407091602965e707"},"23cd9871539ea4b6b4fa4cef3c47eee3215d6fe9349f3c481e4911d9a6cbef03","83627d497cdd4242766c284d87e9cbe3277a8ace6c3fd483d77d6c1593f58e0e","039aa333683d3a733f25cc2a5b18e392e7c75e3a6f708849fbf89da9a3844161","76500852b652d9df7f7ea9790faba32d8f3abb81e7b1af135899d7d1dedfc365","f0cb4b3ab88193e3e51e9e2622e4c375955003f1f81239d72c5b7a95415dad3e","1d1e6bd176eee5970968423d7e215bfd66828b6db8d54d17afec05a831322633","393137c76bd922ba70a2f8bf1ade4f59a16171a02fb25918c168d48875b0cfb0","3602dfff3072caea42f23a9b63fb34a7b0c95a62b93ce2add5fe6b159447845e","c9ad058b2cc9ce6dc2ed92960d6d009e8c04bef46d3f5312283debca6869f613"],"options":{"allowSyntheticDefaultImports":true,"allowUmdGlobalAccess":false,"declaration":true,"emitDecoratorMetadata":true,"esModuleInterop":true,"experimentalDecorators":true,"inlineSourceMap":false,"inlineSources":true,"jsx":1,"module":1,"newLine":1,"noErrorTruncation":true,"noImplicitThis":true,"preserveConstEnums":true,"removeComments":false,"skipLibCheck":true,"sourceMap":true,"strict":false,"strictNullChecks":false,"target":6},"fileIdsList":[[151,157],[151,157,162],[129,151,157,159],[128,151,157,159,185],[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,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,157],[128,135,144,151,157],[120,128,135,151,157],[144,151,157],[126,128,135,151,157],[128,151,157],[128,144,150,151,157],[128,135,144,150,151,157],[128,129,130,135,144,147,150,151,157],[128,130,147,150,151,157],[126,128,144,151,157],[118,151,157],[128,144,151,157],[142,151,153,157],[124,126,135,144,151,157],[116,151,157],[151,156,157,158],[151],[135,151,157],[141,151,157],[157],[128,144,151,153,157],[41,80,151,157],[41,65,80,151,157],[80,151,157],[41,151,157],[41,66,80,151,157],[41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,151,157],[66,80,151,157],[151,157,170],[151,157,171,172,173,174],[85,151,157,169],[151,157,163],[151,157,162,164,165,166],[38,151,157],[39,110,112,114,129,151,157],[82,83,105,106,107,151,157],[80,81,151,157],[82,151,157],[40,82,105,107,108,109,151,157],[98,137,151,157,168,175,176,177],[98,130,137,151,157,160,161,162,167],[108,110,151,157],[110,151,157],[110,151,157,179],[113,151,157],[111,151,157],[85,86,151,157],[103,151,157],[84,90,151,157],[86,151,157],[91,104,151,157],[84,151,157],[84,85,86,87,88,89,90,91,92,93,94,95,96,97,99,100,101,102,104,105,151,157],[104,151,157],[98,103,151,157],[103,104,151,157],[111]],"referencedMap":[[7,1],[8,1],[12,1],[11,1],[2,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[3,1],[4,1],[24,1],[21,1],[22,1],[23,1],[25,1],[26,1],[27,1],[5,1],[28,1],[29,1],[30,1],[31,1],[6,1],[37,1],[32,1],[33,1],[34,1],[35,1],[1,1],[36,1],[10,1],[9,1],[163,2],[98,1],[184,1],[160,3],[186,4],[162,1],[185,1],[187,1],[117,1],[118,1],[156,5],[119,1],[120,6],[121,7],[122,1],[123,1],[124,8],[125,9],[126,1],[127,10],[128,1],[129,11],[116,1],[130,12],[131,13],[132,14],[133,10],[134,1],[135,15],[136,1],[137,1],[138,16],[139,1],[140,1],[141,1],[142,17],[143,18],[144,10],[145,1],[146,1],[147,19],[148,1],[158,20],[159,21],[157,22],[149,23],[150,24],[151,25],[152,8],[153,1],[154,26],[155,8],[188,1],[165,1],[65,27],[66,28],[41,29],[44,29],[63,27],[64,27],[54,30],[53,30],[51,27],[46,27],[59,27],[57,27],[61,27],[45,27],[58,27],[62,27],[47,27],[48,27],[60,27],[42,27],[49,27],[50,27],[52,27],[56,27],[67,31],[55,27],[43,27],[80,32],[79,1],[74,31],[76,33],[75,31],[68,31],[69,31],[71,31],[73,31],[77,33],[78,33],[70,33],[72,33],[161,1],[171,34],[173,34],[175,35],[172,34],[174,34],[170,36],[169,1],[164,37],[167,38],[166,2],[39,39],[115,40],[108,41],[106,1],[81,1],[82,42],[109,43],[107,1],[110,44],[179,1],[177,1],[176,1],[178,45],[168,46],[182,47],[183,48],[180,49],[181,48],[114,50],[112,51],[38,1],[83,1],[40,1],[113,1],[111,1],[84,1],[87,52],[104,53],[88,1],[89,1],[91,54],[92,1],[93,55],[94,56],[95,1],[90,1],[86,57],[103,58],[96,59],[97,1],[85,57],[99,60],[100,1],[101,1],[102,1],[105,61]],"exportedModulesMap":[[7,1],[8,1],[12,1],[11,1],[2,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[3,1],[4,1],[24,1],[21,1],[22,1],[23,1],[25,1],[26,1],[27,1],[5,1],[28,1],[29,1],[30,1],[31,1],[6,1],[37,1],[32,1],[33,1],[34,1],[35,1],[1,1],[36,1],[10,1],[9,1],[163,2],[98,1],[184,1],[160,3],[186,4],[162,1],[185,1],[187,1],[117,1],[118,1],[156,5],[119,1],[120,6],[121,7],[122,1],[123,1],[124,8],[125,9],[126,1],[127,10],[128,1],[129,11],[116,1],[130,12],[131,13],[132,14],[133,10],[134,1],[135,15],[136,1],[137,1],[138,16],[139,1],[140,1],[141,1],[142,17],[143,18],[144,10],[145,1],[146,1],[147,19],[148,1],[158,20],[159,21],[157,22],[149,23],[150,24],[151,25],[152,8],[153,1],[154,26],[155,8],[188,1],[165,1],[65,27],[66,28],[41,29],[44,29],[63,27],[64,27],[54,30],[53,30],[51,27],[46,27],[59,27],[57,27],[61,27],[45,27],[58,27],[62,27],[47,27],[48,27],[60,27],[42,27],[49,27],[50,27],[52,27],[56,27],[67,31],[55,27],[43,27],[80,32],[79,1],[74,31],[76,33],[75,31],[68,31],[69,31],[71,31],[73,31],[77,33],[78,33],[70,33],[72,33],[161,1],[171,34],[173,34],[175,35],[172,34],[174,34],[170,36],[169,1],[164,37],[167,38],[166,2],[39,39],[115,40],[108,41],[106,1],[81,1],[82,42],[109,43],[107,1],[110,44],[177,1],[176,1],[178,45],[168,46],[182,47],[183,48],[180,49],[181,48],[114,50],[112,62],[38,1],[83,1],[40,1],[113,1],[111,1],[84,1],[87,52],[104,53],[88,1],[89,1],[91,54],[92,1],[93,55],[94,56],[95,1],[90,1],[86,57],[103,58],[96,59],[97,1],[85,57],[99,60],[100,1],[101,1],[102,1],[105,61]],"semanticDiagnosticsPerFile":[7,8,12,11,2,13,14,15,16,17,18,19,20,3,4,24,21,22,23,25,26,27,5,28,29,30,31,6,37,32,33,34,35,1,36,10,9,163,98,184,160,186,162,185,187,117,118,156,119,120,121,122,123,124,125,126,127,128,129,116,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,158,159,157,149,150,151,152,153,154,155,188,165,65,66,41,44,63,64,54,53,51,46,59,57,61,45,58,62,47,48,60,42,49,50,52,56,67,55,43,80,79,74,76,75,68,69,71,73,77,78,70,72,161,171,173,175,172,174,170,169,164,167,166,39,115,108,106,81,82,109,107,110,179,177,176,178,168,182,183,180,181,114,112,38,83,40,113,111,84,87,104,88,89,91,92,93,94,95,90,86,103,96,97,85,99,100,101,102,105],"affectedFilesPendingEmit":[[2,1],[3,1],[4,1],[5,1],[6,1],[37,1],[163,1],[98,1],[184,1],[160,1],[186,1],[162,1],[185,1],[187,1],[117,1],[118,1],[156,1],[119,1],[120,1],[121,1],[122,1],[123,1],[124,1],[125,1],[126,1],[127,1],[128,1],[129,1],[116,1],[130,1],[131,1],[132,1],[133,1],[134,1],[135,1],[136,1],[137,1],[138,1],[139,1],[140,1],[141,1],[142,1],[143,1],[144,1],[145,1],[146,1],[147,1],[148,1],[158,1],[159,1],[157,1],[149,1],[150,1],[151,1],[152,1],[153,1],[154,1],[155,1],[188,1],[165,1],[65,1],[66,1],[41,1],[44,1],[63,1],[64,1],[54,1],[53,1],[51,1],[46,1],[59,1],[57,1],[61,1],[45,1],[58,1],[62,1],[47,1],[48,1],[60,1],[42,1],[49,1],[50,1],[52,1],[56,1],[67,1],[55,1],[43,1],[80,1],[79,1],[74,1],[76,1],[75,1],[68,1],[69,1],[71,1],[73,1],[77,1],[78,1],[70,1],[72,1],[161,1],[171,1],[173,1],[175,1],[172,1],[174,1],[170,1],[169,1],[164,1],[167,1],[166,1],[39,1],[115,1],[108,1],[106,1],[81,1],[82,1],[109,1],[107,1],[110,1],[179,1],[177,1],[176,1],[178,1],[168,1],[182,1],[183,1],[180,1],[181,1],[114,1],[112,1],[38,1],[83,1],[40,1],[113,1],[111,1],[84,1],[87,1],[104,1],[88,1],[89,1],[91,1],[92,1],[93,1],[94,1],[95,1],[90,1],[86,1],[103,1],[96,1],[97,1],[85,1],[99,1],[100,1],[101,1],[102,1],[105,1]]},"version":"4.4.0-dev.20210715"}
1
+ {"program":{"fileNames":["../../node_modules/@tsd/typescript/typescript/lib/lib.es5.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.es2015.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.es2016.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.es2017.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.es2018.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.es2019.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.es2020.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.dom.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.webworker.importscripts.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.scripthost.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.es2015.core.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.es2017.object.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.es2017.string.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.es2019.array.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.es2019.object.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.es2019.string.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.es2020.string.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/@tsd/typescript/typescript/lib/lib.es2019.full.d.ts","./types/eslintrc.json.d.ts","./eslintrc-json.ts","./types/package.json.d.ts","../../node_modules/@types/semver/classes/semver.d.ts","../../node_modules/@types/semver/functions/parse.d.ts","../../node_modules/@types/semver/functions/valid.d.ts","../../node_modules/@types/semver/functions/clean.d.ts","../../node_modules/@types/semver/functions/inc.d.ts","../../node_modules/@types/semver/functions/diff.d.ts","../../node_modules/@types/semver/functions/major.d.ts","../../node_modules/@types/semver/functions/minor.d.ts","../../node_modules/@types/semver/functions/patch.d.ts","../../node_modules/@types/semver/functions/prerelease.d.ts","../../node_modules/@types/semver/functions/compare.d.ts","../../node_modules/@types/semver/functions/rcompare.d.ts","../../node_modules/@types/semver/functions/compare-loose.d.ts","../../node_modules/@types/semver/functions/compare-build.d.ts","../../node_modules/@types/semver/functions/sort.d.ts","../../node_modules/@types/semver/functions/rsort.d.ts","../../node_modules/@types/semver/functions/gt.d.ts","../../node_modules/@types/semver/functions/lt.d.ts","../../node_modules/@types/semver/functions/eq.d.ts","../../node_modules/@types/semver/functions/neq.d.ts","../../node_modules/@types/semver/functions/gte.d.ts","../../node_modules/@types/semver/functions/lte.d.ts","../../node_modules/@types/semver/functions/cmp.d.ts","../../node_modules/@types/semver/functions/coerce.d.ts","../../node_modules/@types/semver/classes/comparator.d.ts","../../node_modules/@types/semver/classes/range.d.ts","../../node_modules/@types/semver/functions/satisfies.d.ts","../../node_modules/@types/semver/ranges/max-satisfying.d.ts","../../node_modules/@types/semver/ranges/min-satisfying.d.ts","../../node_modules/@types/semver/ranges/to-comparators.d.ts","../../node_modules/@types/semver/ranges/min-version.d.ts","../../node_modules/@types/semver/ranges/valid.d.ts","../../node_modules/@types/semver/ranges/outside.d.ts","../../node_modules/@types/semver/ranges/gtr.d.ts","../../node_modules/@types/semver/ranges/ltr.d.ts","../../node_modules/@types/semver/ranges/intersects.d.ts","../../node_modules/@types/semver/ranges/simplify.d.ts","../../node_modules/@types/semver/ranges/subset.d.ts","../../node_modules/@types/semver/internals/identifiers.d.ts","../../node_modules/@types/semver/index.d.ts","./lib/package-json/publishconfig.ts","./lib/package-json/types.ts","./types/lerna.json.d.ts","../ts-type/lib/helper/filter.ts","../ts-type/lib/type/record/partial.ts","../ts-type/lib/type/record.ts","./lib/lerna-json/types.ts","./lib/types.ts","../ts-type/lib/generic.ts","../ts-type/lib/type/base.ts","../ts-type/lib/helper/typeof.ts","../ts-type/lib/helper/key-value.ts","../ts-type/lib/helper/record/pick-type.ts","./lerna-json.ts","./lib/package-json/yarn.ts","../ts-type/lib/helper/record/omit-index.ts","./lib/package-json/extend.ts","./package-json.ts","./types/tsconfig.json.d.ts","./tsconfig-json.ts","./types/travis.json.d.ts","./travis-json.ts","./index.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/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/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/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/@types/fs-extra/index.d.ts","../../node_modules/axios/index.d.ts","../../node_modules/@types/bluebird/index.d.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@apidevtools/json-schema-ref-parser/lib/index.d.ts","../../node_modules/json-schema-ref-parser/index.d.ts","../../node_modules/@types/prettier/index.d.ts","../../node_modules/@types/lodash/common/common.d.ts","../../node_modules/@types/lodash/common/array.d.ts","../../node_modules/@types/lodash/common/collection.d.ts","../../node_modules/@types/lodash/common/date.d.ts","../../node_modules/@types/lodash/common/function.d.ts","../../node_modules/@types/lodash/common/lang.d.ts","../../node_modules/@types/lodash/common/math.d.ts","../../node_modules/@types/lodash/common/number.d.ts","../../node_modules/@types/lodash/common/object.d.ts","../../node_modules/@types/lodash/common/seq.d.ts","../../node_modules/@types/lodash/common/string.d.ts","../../node_modules/@types/lodash/common/util.d.ts","../../node_modules/@types/lodash/index.d.ts","../../node_modules/json-schema-to-typescript/dist/src/types/jsonschema.d.ts","../../node_modules/json-schema-to-typescript/dist/src/index.d.ts","./script/util.ts","../../node_modules/dot-values2/module.d.ts","../../node_modules/dot-values2/node_modules/ts-type/lib/generic.d.ts","../../node_modules/dot-values2/node_modules/ts-type/lib/type/base.d.ts","../../node_modules/dot-values2/lib/types.d.ts","../../node_modules/dot-values2/lib/util.d.ts","../../node_modules/dot-values2/lib/get.d.ts","../../node_modules/dot-values2/lib/set.d.ts","../../node_modules/dot-values2/lib/has.d.ts","../../node_modules/dot-values2/lib/unset.d.ts","../../node_modules/dot-values2/lib/index.d.ts","./schema/package.json","./schema/lerna.json","./script/index.ts","./package.json","./test/temp.ts","./test/temp2.ts","./test/spec/lerna-json.ts","./test/spec/package-json.ts","../../node_modules/@types/eslint/helpers.d.ts","../../node_modules/@types/eslint/lib/rules/index.d.ts","../../node_modules/@types/estree/index.d.ts","../../node_modules/@types/eslint/index.d.ts","../../node_modules/@types/minimatch/index.d.ts","../../node_modules/@types/glob/index.d.ts","../../node_modules/@types/minimist/index.d.ts","../../node_modules/@types/normalize-package-data/index.d.ts","./node_modules/ts-type/lib/type/base.d.ts","./node_modules/ts-type/lib/generic.d.ts","./node_modules/ts-type/lib/type/record.d.ts","./node_modules/ts-type/lib/helper.d.ts","./node_modules/ts-type/lib/helper/filter.d.ts","./node_modules/ts-type/lib/helper/infer.d.ts","./node_modules/ts-type/lib/helper/intersection.d.ts","./node_modules/ts-type/lib/helper/key-value.d.ts","./node_modules/ts-type/lib/helper/number.d.ts","./node_modules/ts-type/lib/helper/overwrite.d.ts","./node_modules/ts-type/lib/helper/readonly.d.ts","./node_modules/ts-type/lib/helper/record.d.ts","./node_modules/ts-type/lib/helper/string.d.ts","./node_modules/ts-type/lib/helper/tuple.d.ts","./node_modules/ts-type/lib/helper/typeof.d.ts","./node_modules/ts-type/lib/helper/unpacked.d.ts","./node_modules/ts-type/lib/index.d.ts","./node_modules/ts-type/lib/internal/filter.d.ts","./node_modules/ts-type/lib/internal/logic/string-literal.d.ts","./node_modules/ts-type/lib/logic/any.d.ts","./node_modules/ts-type/lib/type/bluebird.d.ts","./node_modules/ts-type/lib/type/decorators.d.ts","./node_modules/ts-type/lib/type/promise.d.ts","./node_modules/ts-type/lib/type/proxy.d.ts"],"fileInfos":[{"version":"6adbf5efd0e374ff5f427a4f26a5a413e9734eee5067a0e86da69aea41910b52","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940",{"version":"abba1071bfd89e55e88a054b0c851ea3e8a494c340d0f3fab19eb18f6afb0c9e","affectsGlobalScope":true},{"version":"927cb2b60048e1395b183bf74b2b80a75bdb1dbe384e1d9fac654313ea2fb136","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"4378fc8122ec9d1a685b01eb66c46f62aba6b239ca7228bb6483bcf8259ee493","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"d071129cba6a5f2700be09c86c07ad2791ab67d4e5ed1eb301d6746c62745ea4","affectsGlobalScope":true},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},"1f03b495671c3a1bd24510f38b8947f0991dfd6bf0278c68eca14af15b306e1f","bb92d6222cdcae353c55bfcc33d0dd1f2defb81e9373602f920e72a66087ec33","f8047e89050e511c103095417dc4241b692da40f0ce971732117874d648161e4","df77ec0b60c5b344a51593cefdb1a8cc855f9851eb7f113a4e24f208a8acf9cc","d9e55d93aa33fad61bd5c63800972d00ba8879ec5d29f6f3bce67d16d86abc33","2ac9c8332c5f8510b8bdd571f8271e0f39b0577714d5e95c1e79a12b2616f069","42c21aa963e7b86fa00801d96e88b36803188018d5ad91db2a9101bccd40b3ff","d31eb848cdebb4c55b4893b335a7c0cca95ad66dee13cbb7d0893810c0a9c301","77c1d91a129ba60b8c405f9f539e42df834afb174fe0785f89d92a2c7c16b77a","c544d81603149987796b24cca297c965db427b84b2580fb27e52fb37ddc1f470","906c751ef5822ec0dadcea2f0e9db64a33fb4ee926cc9f7efa38afe5d5371b2a","5387c049e9702f2d2d7ece1a74836a14b47fbebe9bbeb19f94c580a37c855351","c68391fb9efad5d99ff332c65b1606248c4e4a9f1dd9a087204242b56c7126d6","e9cf02252d3a0ced987d24845dcb1f11c1be5541f17e5daa44c6de2d18138d0c","e8b02b879754d85f48489294f99147aeccc352c760d95a6fe2b6e49cd400b2fe","9f6908ab3d8a86c68b86e38578afc7095114e66b2fc36a2a96e9252aac3998e0","0eedb2344442b143ddcd788f87096961cd8572b64f10b4afc3356aa0460171c6","9eb2875a1e4c583066af7d6194ea8162191b2756e5d87ccb3c562fdf74d06869","c68baff4d8ba346130e9753cefe2e487a16731bf17e05fdacc81e8c9a26aae9d","2cd15528d8bb5d0453aa339b4b52e0696e8b07e790c153831c642c3dea5ac8af","479d622e66283ffa9883fbc33e441f7fc928b2277ff30aacbec7b7761b4e9579","ade307876dc5ca267ca308d09e737b611505e015c535863f22420a11fffc1c54","f8cdefa3e0dee639eccbe9794b46f90291e5fd3989fcba60d2f08fde56179fb9","86c5a62f99aac7053976e317dbe9acb2eaf903aaf3d2e5bb1cafe5c2df7b37a8","2b300954ce01a8343866f737656e13243e86e5baef51bd0631b21dcef1f6e954","a2d409a9ffd872d6b9d78ead00baa116bbc73cfa959fce9a2f29d3227876b2a1","b288936f560cd71f4a6002953290de9ff8dfbfbf37f5a9391be5c83322324898","61178a781ef82e0ff54f9430397e71e8f365fc1e3725e0e5346f2de7b0d50dfa","6a6ccb37feb3aad32d9be026a3337db195979cd5727a616fc0f557e974101a54","6eef5113135a0f2bbac8259909a5bbb7666bcde022c28f4ab95145623cbe1f72","058b8dd97b7c67b6bf33e7bda7b1e247b019b675d4b6449d14ac002091a8b4f8","89c8a7b88c378663a8124664f2d9b8c2887e186b55aa066edf6d67177ca1aa04","5a30ba65ad753eb2ef65355dbb3011b28b192cb9df2ef0b5f595b51ca7faf353","b15e55c5fa977c2f25ca0b1db52cfa2d1fd4bf0baf90a8b90d4a7678ca462ff1","f41d30972724714763a2698ae949fbc463afb203b5fa7c4ad7e4de0871129a17","86d425f7fcd8d100dafa6286cc289af88cbb639ecbdbd25c3018a8f0f7b09fe5","9795e0a3a45d5b6f1a791ee54b7c8b58bc931e8900966cea2dff9c5bae56073b","5890be29879d02424b7654f40592915189034948f7a18c5ad121c006d4e92811","0ab49086f10c75a1cb3b18bffe799dae021774146d8a2d5a4bb42dda67b64f9b","81c77839e152b8f715ec67b0a8b910bcc2d6cf916794c3519f8798c40efd12ac","a868a534ba1c2ca9060b8a13b0ffbbbf78b4be7b0ff80d8c75b02773f7192c29","464843c00fb3dd4735b28255c5c9fe713f16b8e47a3db09ba1647687440f7aef","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","d0f6d36b2d86f934560c48d8bfdc7ab60c67cfb2ab6dc1916706aa68e83d6dc2","4c3afd5ad9d0d77157d3dce6746cd171807940e63dda3362d65454d374325bf4","4128053f212ffd463294b7d1d62b36002f25f6faa454b4a6bc64118f6d7312e4","2fa343d4a34bcab281d37cd89e34228cbed2d07ea2b410187d047b3937d5d902","2c3d97a84af1289bbff642ac7e31e2cd17fa28598c4eb216b6f7907c4b9956a1","eb876afa9a4c51f9beedf27208c05fa9beaf4283ed71b3e991a8040e921bf9c1","66dc5d0cb1eed26a44cdb3cf93bb747c633f9c18ab5a5d7c2fd3e74ed5442aba","b1a9246a8270b80555ac859ed4ce87155fda2cc5875d826496390d87cb4eb828","d17688b682b07072256d81ecd8001e7a10a871e286389066d8b18f4bf51afcd9","f44c7e8edf452ef8eebea847c4a72f92f5a1afe341d45411ded867513d69011d","c5d4f483bda63c9cb7bf80a97d70abc6a2df14d8a1913ef6666bfda1a6c0feeb","30a0a331dc5ca5c3d34a3f3b6bbd2e7badc62c1effe393650af1d78afcf31c76","17dec98c15b12786d26552f0b4eed667d1850a9f169a6a955974a616f86c7839","627f25a052bd6ba0f91c9a54857fd8030b34dffed7eb24c3036fbef274f8a276",{"version":"f495331c08b16183d0b9dd65ad148c59269235dece6a29438c51bd233b8d16c2","signature":"a19b562b606a5a357b30d074d245d9bb58a1fb6025abbddbac7137da9ecaffc6"},"6bf6d553e086ea3ba4067abdb46a11e437e410f58c8f60182c24b947a7897e9e","d6df68a2f8717857470226d76f50d5cdfdc93128a5192f1fb60b3b5db5f32c19",{"version":"9d481dcb367f1784550b1e5f49e10c7b34401284b2681437bb8f55f5967d9006","signature":"1654a25ab59b88dcb47182f3f5fe9914677483b77c5d1e053ebccd45dd94dad1"},{"version":"001b8af4461754170f2d408b64417fb1035093a90f6c249489613adb65fa7e2d","signature":"da620765299ef8efecd892073a80d99ced11a8a764f38007faeeb2045da2cda5"},"0d72245f0e143cbd88880751f263591e8ecf7b4a2305d47c89bbddbba016ff3e","8c30ad5a90bcc7563c21ff7bd9daf554a623a499816f275f57ca56a45eefe150","713a9ece1839bbbe6beacc21f67b68ff27abfa802e00314759f7c194fea6e485","da3fa2afe8b071a88b08b37612cb87ac539b466ece69e8932dac2fabebd82c49",{"version":"294554913f43e53471148f2c56b32ec7348fd88355e6d7e01bb68ecb5cd34a7f","signature":"88f851a5deb83556aa8fdd16a92183873b1a19e7286745e8812023a1c5610891"},"0d5a2ee1fdfa82740e0103389b9efd6bfe145a20018a2da3c02b89666181f4d9","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"92d63add669d18ebc349efbacd88966d6f2ccdddfb1b880b2db98ae3aa7bf7c4","affectsGlobalScope":true},"ccc94049a9841fe47abe5baef6be9a38fc6228807974ae675fb15dc22531b4be",{"version":"9acfe4d1ff027015151ce81d60797b04b52bffe97ad8310bb0ec2e8fd61e1303","affectsGlobalScope":true},"95843d5cfafced8f3f8a5ce57d2335f0bcd361b9483587d12a25e4bd403b8216","afc6e96061af46bcff47246158caee7e056f5288783f2d83d6858cd25be1c565",{"version":"34f5bcac12b36d70304b73de5f5aab3bb91bd9919f984be80579ebcad03a624e","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","2f520601649a893e6a49a8851ebfcf4be8ce090dc1281c2a08a871cb04e8251f","f50c975ab7b50e25a69e3d8a3773894125b44e9698924105f23b812bf7488baf","2b8c764f856a1dd0a9a2bf23e5efddbff157de8138b0754010be561ae5fcaa90","ad4b60488fb1e562bf375dac9299815f7028bf667d9b5887b2d01d501b7d1ddd","246341c3a7a2638cf830d690e69de1e6085a102c6a30596435b050e6ac86c11a","6972fca26f6e9bd56197568d4379f99071a90766e06b4fcb5920a0130a9202be",{"version":"4a2628e95962c8ab756121faa3ac2ed348112ff7a87b5c286dd2cc3326546b4c","affectsGlobalScope":true},"aa8fe22e10f78a67b2ffbcc614b45fe258ff9e71d53ddb56e75fa7883c530270","a049a59a02009fc023684fcfaf0ac526fe36c35dcc5d2b7d620c1750ba11b083","a361a26932d73497a174a6d48c53cfedb55f735f20e8638fdf7b25cdeaac9ca4","b287b810b5035d5685f1df6e1e418f1ca452a3ed4f59fd5cc081dbf2045f0d9b","4b9a003b5c556c96784132945bb41c655ea11273b1917f5c8d0c154dd5fd20dd","a458dc78104cc80048ac24fdc02fe6dce254838094c2f25641b3f954d9721241",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"902cd98bf46e95caf4118a0733fb801e9e90eec3edaed6abdad77124afec9ca2","abc1c425b2ad6720433f40f1877abfa4223f0f3dd486c9c28c492179ca183cb6","cd4854d38f4eb5592afd98ab95ca17389a7dfe38013d9079e802d739bdbcc939","94eed4cc2f5f658d5e229ff1ccd38860bddf4233e347bf78edd2154dee1f2b99",{"version":"e51bee3200733b1f58818b5a9ea90fcd61c5b8afa3a0378391991f3696826a65","affectsGlobalScope":true},"9f1069b9e2c051737b1f9b4f1baf50e4a63385a6a89c32235549ae87fc3d5492","ee18f2da7a037c6ceeb112a084e485aead9ea166980bf433474559eac1b46553","29c2706fa0cc49a2bd90c83234da33d08bb9554ecec675e91c1f85087f5a5324","0acbf26bf958f9e80c1ffa587b74749d2697b75b484062d36e103c137c562bc3","d7838022c7dab596357a9604b9c6adffe37dc34085ce0779c958ce9545bd7139","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"a279435e7813d1f061c0cab6ab77b1b9377e8d96851e5ed4a76a1ce6eb6e628f","c33a6ea7147af60d8e98f1ac127047f4b0d4e2ce28b8f08ff3de07ca7cc00637",{"version":"b42b47e17b8ece2424ae8039feb944c2e3ba4b262986aebd582e51efbdca93dc","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","2408611d9b4146e35d1dbd1f443ccd8e187c74614a54b80300728277529dbf11","998a3de5237518c0b3ac00a11b3b4417affb008aa20aedee52f3fdae3cb86151","ad41008ffe077206e1811fc873f4d9005b5fd7f6ab52bb6118fef600815a5cb4","d88ecca73348e7c337541c4b8b60a50aca5e87384f6b8a422fc6603c637e4c21","badae0df9a8016ac36994b0a0e7b82ba6aaa3528e175a8c3cb161e4683eec03e","c3db860bcaaaeb3bbc23f353bbda1f8ab82756c8d5e973bebb3953cb09ea68f2","235a53595bd20b0b0eeb1a29cb2887c67c48375e92f03749b2488fbd46d0b1a0","bc09393cd4cd13f69cf1366d4236fbae5359bb550f0de4e15767e9a91d63dfb1","9c266243b01545e11d2733a55ad02b4c00ecdbda99c561cd1674f96e89cdc958","c71155c05fc76ff948a4759abc1cb9feec036509f500174bc18dad4c7827a60c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"e6ef68f677c1b63967d87568043b8af9d2dfd71d5873acd1de3abeb1db606741","ed19da84b7dbf00952ad0b98ce5c194f1903bcf7c94d8103e8e0d63b271543ae","644c59289eb29590d65062c5b64dda9ef2797ce120071265a9099436f0d41a16","338bd7c3518b05b4c473971be0e5f8f854aca7cdb00d1b97192c14860f4ebf2f","0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","6bf066feed9a2020bec7b198c2b36e56545f107c5f2f059ae507f35325ef5ec5","ef2347ab5b328013eb07a25d7689ca77a8728788ff2e625092844ae5566c29af","f58599a92d4a64416f4999a4d7241e1647aec2a6249214892722f712a6eedbe0","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","378df8bbbb9e3f6fca05d58f644aab538e1062eab5e778fb0b83d41125df246d","d88a479cccf787b4aa82362150fbeba5211a32dbfafa7b92ba6995ecaf9a1a89","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","c24ad9be9adf28f0927e3d9d9e9cec1c677022356f241ccbbfb97bfe8fb3d1a1","0ec0998e2d085e8ea54266f547976ae152c9dd6cdb9ac4d8a520a230f5ebae84","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","ae9930989ed57478eb03b9b80ad3efa7a3eacdfeff0f78ecf7894c4963a64f93","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","9fa6b83a35e897f340858995ca5d77e901d89fd18644cd4c9e8a4afe0b2e6363",{"version":"0714e2046df66c0e93c3330d30dbc0565b3e8cd3ee302cf99e4ede6220e5fec8","affectsGlobalScope":true},"67bec1ef11c1e97f6f4f78df7aaa48ac13321e937c1f6e3a8cac9fcbafa66c5e","279752b695159b05f542c9e092a943aad787b393e0eeabea72bb14b78141733f","da2342a5667d78aca7d4021fb040e588d82d1f448e4680d036cddd93c3feac52","b32dbd9a355452b1e36f5bfd99ac857eedefe556a704a78a76f53ecd8884f6a1","be286e579e42c0665af2a8d7bd091541cd37c19daaa4f5d1c109cc2497feff3a","4ad99c18b6d308718e6487e3aa151e3aea2b847be8b20e7a161940ad3075c4f5","0a22d33155c9566aa295761ff814421d38f9b7e50dea9a8cfa98a192eaae71c4","85021bf76a9327644bf808d76adf74b471e14fc64fdd3167bc0dfd148f15f163","265158b08e92c8b44b6bf16f4e223d5fa354a17bb052df13deb3f340bb8fc525","8128f73d3289ada601bc32e9263911907be2980e9dcbd421c358e4cdc904ebff","bdaee3b9c26d2f97fb49b925d725654106b30b1016fb0bb9361bdd66188d386d","e60aaf372df8437098eaabd1cdfeb37980bec7e64f5cdc491b7db049c4e93e94","c514916c76446f935ffd0a15b7c4af30677641f749b8ac1f52e35ac9f16349bc","56740db89dcf25e99ee3ba21b3576aba1956f0016c7718ddffb1dbded584b5dc","5a721e414c8cb8c64762d76b93a86f5fb0b0ee7ef92f738cda36e34acc426188","a3c72791f4e8be2b565d0282b34be5c25a7e7f08008e4c0d88c9a98005e66f65",{"version":"6e81fc80f60b85f8bacb08dc56fe53cab1c453f868aa24127b9d5a2281da63a2","signature":"306d42a9623c2ec540a3c0c8443f56b33efb547b761adb90407091602965e707"},{"version":"23cd9871539ea4b6b4fa4cef3c47eee3215d6fe9349f3c481e4911d9a6cbef03","signature":"fd72124042c7ac53138e22ed3fbe597a318d7980f4e163b459428a87d4685a19"},{"version":"83627d497cdd4242766c284d87e9cbe3277a8ace6c3fd483d77d6c1593f58e0e","signature":"4597dfacf195594946bf0fd9447dc70c67021171c722a3c0c4c59514dc3f51e7"},{"version":"039aa333683d3a733f25cc2a5b18e392e7c75e3a6f708849fbf89da9a3844161","signature":"94e5a98aa26b10c21c75a1c55d8aa4f60f782d1e4bea722e1ba1d75474d69eca"},{"version":"295d81aa7a8ca5de033c84d5658c63b7e0c2b79358b4a9980cbb147519296551","signature":"d0358335659b91d1d9d7b912ff8a3eefd0aa902715636b9b0a3882494f11db60"},{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"0133ebdd17a823ae56861948870cde4dac18dd8818ab641039c85bbb720429e0","7d7c8ef7d48a035142c07dae60545ecc0e4af4c337742760cb09726f2f8e31db","ab9cce8526b1878586804696261de5505885a9b9bbe8af15e99b7387c81f2b6d","8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","fd326577c62145816fe1acc306c734c2396487f76719d3785d4e825b34540b33","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a"],"options":{"allowSyntheticDefaultImports":true,"allowUmdGlobalAccess":false,"declaration":true,"emitDecoratorMetadata":true,"esModuleInterop":true,"experimentalDecorators":true,"inlineSourceMap":false,"inlineSources":true,"jsx":1,"module":1,"newLine":1,"noErrorTruncation":true,"noImplicitOverride":true,"noImplicitThis":true,"noUncheckedIndexedAccess":true,"preserveConstEnums":true,"removeComments":false,"skipLibCheck":true,"sourceMap":true,"strict":false,"strictNullChecks":false,"target":6},"fileIdsList":[[153,164],[153],[153,164,202,203,204],[153,205],[126,153,160],[125,126,153,160,206],[153,168,170,171,172,173,174,175,176,177,178,179,180],[153,168,169,171,172,173,174,175,176,177,178,179,180],[153,169,170,171,172,173,174,175,176,177,178,179,180],[153,168,169,170,172,173,174,175,176,177,178,179,180],[153,168,169,170,171,173,174,175,176,177,178,179,180],[153,168,169,170,171,172,174,175,176,177,178,179,180],[153,168,169,170,171,172,173,175,176,177,178,179,180],[153,168,169,170,171,172,173,174,176,177,178,179,180],[153,168,169,170,171,172,173,174,175,177,178,179,180],[153,168,169,170,171,172,173,174,175,176,178,179,180],[153,168,169,170,171,172,173,174,175,176,177,179,180],[153,168,169,170,171,172,173,174,175,176,177,178,180],[153,168,169,170,171,172,173,174,175,176,177,178,179],[110,153],[113,153],[114,119,153],[115,125,126,133,142,152,153],[115,116,125,133,153],[117,153],[118,119,126,134,153],[119,142,149,153],[120,122,125,133,153],[121,153],[122,123,153],[124,125,153],[125,153],[125,126,127,142,152,153],[125,126,127,142,153],[128,133,142,152,153],[125,126,128,129,133,142,149,152,153],[128,130,142,149,152,153],[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,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159],[125,131,153],[132,152,153],[122,125,133,142,153],[134,153],[135,153],[113,136,153],[137,151,153,157],[138,153],[139,153],[125,140,153],[140,141,153,155],[125,142,143,144,153],[142,144,153],[142,143,153],[145,153],[146,153],[125,147,148,153],[147,148,153],[119,133,149,153],[150,153],[133,151,153],[114,128,139,152,153],[119,153],[142,153,154],[153,155],[153,156],[114,119,125,127,136,142,152,153,155,157],[142,153,158],[47,86,153],[47,71,86,153],[86,153],[47,153],[47,72,86,153],[47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,153],[72,86,153],[153,188],[153,189,190,191,192],[153,186],[153,184,186,187],[153,185],[153,165],[153,164,166,167,181],[153,164,180],[44,153],[45,104,106,108,126,153],[88,89,92,93,94,99,153],[88,94,100,153],[86,87,153],[88,153],[46,88,91,92,94,100,101,102,103,153],[135,153,163,183,193,194,195],[128,135,153,161,162,163,164,182],[100,104,153],[104,153],[104,153,197],[107,153],[105,153],[95,97,153],[90,96,98,153],[95,153],[90,91,153],[153,210],[153,184,187,210],[153,211],[45,104,106,108],[88,89,93,94,212],[88,94,100],[46,88,91,92,101,102,103],[86,92],[46,94,101,104]],"referencedMap":[[165,1],[8,2],[9,2],[13,2],[12,2],[2,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[3,2],[4,2],[25,2],[22,2],[23,2],[24,2],[26,2],[27,2],[28,2],[5,2],[29,2],[30,2],[31,2],[32,2],[6,2],[43,2],[33,2],[34,2],[35,2],[36,2],[7,2],[41,2],[37,2],[38,2],[39,2],[40,2],[1,2],[42,2],[11,2],[10,2],[163,2],[202,2],[205,3],[203,4],[204,2],[161,5],[207,6],[164,2],[169,7],[170,8],[168,9],[171,10],[172,11],[173,12],[174,13],[175,14],[176,15],[177,16],[178,17],[179,18],[180,19],[206,2],[208,2],[110,20],[111,20],[113,21],[114,22],[115,23],[116,24],[117,25],[118,26],[119,27],[120,28],[121,29],[122,30],[123,30],[124,31],[125,32],[126,33],[127,34],[112,2],[159,2],[128,35],[129,36],[130,37],[160,38],[131,39],[132,40],[133,41],[134,42],[135,43],[136,44],[137,45],[138,46],[139,47],[140,48],[141,49],[142,50],[144,51],[143,52],[145,53],[146,54],[147,55],[148,56],[149,57],[150,58],[151,59],[152,60],[153,61],[154,62],[155,63],[156,64],[157,65],[158,66],[209,2],[167,2],[71,67],[72,68],[47,69],[50,69],[69,67],[70,67],[60,70],[59,70],[57,67],[52,67],[65,67],[63,67],[67,67],[51,67],[64,67],[68,67],[53,67],[54,67],[66,67],[48,67],[55,67],[56,67],[58,67],[62,67],[73,71],[61,67],[49,67],[86,72],[85,2],[80,71],[82,73],[81,71],[74,71],[75,71],[77,71],[79,71],[83,73],[84,73],[76,73],[78,73],[162,2],[189,74],[191,74],[193,75],[190,74],[187,76],[192,74],[188,77],[184,2],[185,2],[186,78],[166,79],[182,80],[181,81],[45,82],[109,83],[100,84],[93,2],[103,85],[87,2],[88,86],[101,87],[94,2],[104,88],[197,2],[195,2],[194,2],[196,89],[183,90],[200,91],[201,92],[198,93],[199,92],[108,94],[106,95],[44,2],[89,2],[46,2],[107,2],[105,2],[95,2],[90,2],[98,96],[102,2],[99,97],[97,2],[96,98],[92,99],[91,2]],"exportedModulesMap":[[165,1],[8,2],[9,2],[13,2],[12,2],[2,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[3,2],[4,2],[25,2],[22,2],[23,2],[24,2],[26,2],[27,2],[28,2],[5,2],[29,2],[30,2],[31,2],[32,2],[6,2],[43,2],[33,2],[34,2],[35,2],[36,2],[7,2],[41,2],[37,2],[38,2],[39,2],[40,2],[1,2],[42,2],[11,2],[10,2],[163,2],[202,2],[205,3],[203,4],[204,2],[161,5],[207,6],[164,2],[169,7],[170,8],[168,9],[171,10],[172,11],[173,12],[174,13],[175,14],[176,15],[177,16],[178,17],[179,18],[180,19],[206,2],[208,2],[110,20],[111,20],[113,21],[114,22],[115,23],[116,24],[117,25],[118,26],[119,27],[120,28],[121,29],[122,30],[123,30],[124,31],[125,32],[126,33],[127,34],[112,2],[159,2],[128,35],[129,36],[130,37],[160,38],[131,39],[132,40],[133,41],[134,42],[135,43],[136,44],[137,45],[138,46],[139,47],[140,48],[141,49],[142,50],[144,51],[143,52],[145,53],[146,54],[147,55],[148,56],[149,57],[150,58],[151,59],[152,60],[153,61],[154,62],[155,63],[156,64],[157,65],[158,66],[209,2],[167,2],[71,67],[72,68],[47,69],[50,69],[69,67],[70,67],[60,70],[59,70],[57,67],[52,67],[65,67],[63,67],[67,67],[51,67],[64,67],[68,67],[53,67],[54,67],[66,67],[48,67],[55,67],[56,67],[58,67],[62,67],[73,71],[61,67],[49,67],[86,72],[85,2],[80,71],[82,73],[81,71],[74,71],[75,71],[77,71],[79,71],[83,73],[84,73],[76,73],[78,73],[162,2],[189,74],[191,74],[193,75],[190,74],[187,100],[192,74],[188,101],[184,2],[185,2],[186,102],[166,79],[182,80],[181,81],[45,82],[109,103],[100,104],[93,2],[103,105],[87,2],[88,86],[101,87],[94,2],[104,106],[195,2],[194,2],[196,89],[183,90],[200,107],[201,108],[108,94],[106,95],[44,2],[89,2],[46,2],[107,2],[105,2],[95,2],[90,2],[98,96],[102,2],[99,97],[97,2],[96,98],[92,99],[91,2]],"semanticDiagnosticsPerFile":[165,8,9,13,12,2,14,15,16,17,18,19,20,21,3,4,25,22,23,24,26,27,28,5,29,30,31,32,6,43,33,34,35,36,7,41,37,38,39,40,1,42,11,10,163,202,205,203,204,161,207,164,169,170,168,171,172,173,174,175,176,177,178,179,180,206,208,110,111,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,112,159,128,129,130,160,131,132,133,134,135,136,137,138,139,140,141,142,144,143,145,146,147,148,149,150,151,152,153,154,155,156,157,158,209,167,71,72,47,50,69,70,60,59,57,52,65,63,67,51,64,68,53,54,66,48,55,56,58,62,73,61,49,86,85,80,82,81,74,75,77,79,83,84,76,78,162,189,191,193,190,187,192,188,184,185,186,166,182,181,45,109,100,93,103,87,88,101,94,104,197,195,194,196,183,200,201,198,199,108,106,44,89,46,107,105,95,90,98,102,99,97,96,92,91],"affectedFilesPendingEmit":[[165,1],[2,1],[3,1],[4,1],[5,1],[6,1],[43,1],[7,1],[163,1],[202,1],[205,1],[203,1],[204,1],[161,1],[207,1],[164,1],[169,1],[170,1],[168,1],[171,1],[172,1],[173,1],[174,1],[175,1],[176,1],[177,1],[178,1],[179,1],[180,1],[206,1],[208,1],[110,1],[111,1],[113,1],[114,1],[115,1],[116,1],[117,1],[118,1],[119,1],[120,1],[121,1],[122,1],[123,1],[124,1],[125,1],[126,1],[127,1],[112,1],[159,1],[128,1],[129,1],[130,1],[160,1],[131,1],[132,1],[133,1],[134,1],[135,1],[136,1],[137,1],[138,1],[139,1],[140,1],[141,1],[142,1],[144,1],[143,1],[145,1],[146,1],[147,1],[148,1],[149,1],[150,1],[151,1],[152,1],[153,1],[154,1],[155,1],[156,1],[157,1],[158,1],[209,1],[167,1],[71,1],[72,1],[47,1],[50,1],[69,1],[70,1],[60,1],[59,1],[57,1],[52,1],[65,1],[63,1],[67,1],[51,1],[64,1],[68,1],[53,1],[54,1],[66,1],[48,1],[55,1],[56,1],[58,1],[62,1],[73,1],[61,1],[49,1],[86,1],[85,1],[80,1],[82,1],[81,1],[74,1],[75,1],[77,1],[79,1],[83,1],[84,1],[76,1],[78,1],[162,1],[189,1],[191,1],[193,1],[190,1],[187,1],[192,1],[188,1],[184,1],[185,1],[186,1],[166,1],[182,1],[181,1],[45,1],[109,1],[100,1],[93,1],[103,1],[87,1],[88,1],[101,1],[94,1],[211,1],[213,1],[214,1],[215,1],[216,1],[217,1],[218,1],[219,1],[220,1],[221,1],[222,1],[223,1],[224,1],[225,1],[226,1],[227,1],[228,1],[229,1],[210,1],[230,1],[231,1],[232,1],[233,1],[212,1],[104,1],[197,1],[195,1],[194,1],[196,1],[183,1],[200,1],[201,1],[198,1],[199,1],[108,1],[106,1],[44,1],[89,1],[46,1],[107,1],[105,1],[95,1],[90,1],[98,1],[102,1],[99,1],[97,1],[96,1],[92,1],[91,1]]},"version":"4.5.2"}
@@ -393,6 +393,10 @@ export interface JSONSchemaForNPMPackageJsonFiles2 {
393
393
  resolutions?: {
394
394
  [k: string]: unknown;
395
395
  };
396
+ /**
397
+ * Defines which package manager is expected to be used when working on the current project. This field is currently experimental and needs to be opted-in; see https://nodejs.org/api/corepack.html
398
+ */
399
+ packageManager?: string;
396
400
  engines?: {
397
401
  node?: string;
398
402
  [k: string]: string;
@@ -420,7 +420,8 @@ export type XcodeVersions =
420
420
  | "xcode12.2"
421
421
  | "xcode12.3"
422
422
  | "xcode12.4"
423
- | "xcode12.5";
423
+ | "xcode12.5"
424
+ | "xcode13.1";
424
425
  export type PossiblySecretString =
425
426
  | string
426
427
  | {
@@ -92,7 +92,7 @@ export interface CompilerOptionsDefinition {
92
92
  */
93
93
  jsxFragmentFactory?: string;
94
94
  /**
95
- * Specify module specifier used to import the JSX factory functions when using `jsx: react-jsx*`.`
95
+ * Specify module specifier used to import the JSX factory functions when using `jsx: react-jsx`.
96
96
  */
97
97
  jsxImportSource?: string;
98
98
  /**
@@ -107,7 +107,20 @@ export interface CompilerOptionsDefinition {
107
107
  * Specify what module code is generated.
108
108
  */
109
109
  module?: (
110
- | ("CommonJS" | "AMD" | "System" | "UMD" | "ES6" | "ES2015" | "ES2020" | "ESNext" | "None")
110
+ | (
111
+ | "CommonJS"
112
+ | "AMD"
113
+ | "System"
114
+ | "UMD"
115
+ | "ES6"
116
+ | "ES2015"
117
+ | "ES2020"
118
+ | "ESNext"
119
+ | "None"
120
+ | "es2022"
121
+ | "node12"
122
+ | "nodenext"
123
+ )
111
124
  | {
112
125
  [k: string]: unknown;
113
126
  }
@@ -197,6 +210,10 @@ export interface CompilerOptionsDefinition {
197
210
  * Disable resolving symlinks to their realpath. This correlates to the same flag in node.
198
211
  */
199
212
  preserveSymlinks?: boolean;
213
+ /**
214
+ * Preserve unused imported values in the JavaScript output that would otherwise be removed
215
+ */
216
+ preserveValueImports?: boolean;
200
217
  /**
201
218
  * Disable wiping the console in watch mode
202
219
  */
@@ -443,6 +460,7 @@ export interface CompilerOptionsDefinition {
443
460
  | "ES2021.String"
444
461
  | "ES2021.WeakRef"
445
462
  | "ESNext.WeakRef"
463
+ | "es2021.intl"
446
464
  )
447
465
  | {
448
466
  [k: string]: unknown;
@@ -633,7 +651,7 @@ export interface WatchOptionsDefinition {
633
651
  /**
634
652
  * Synchronously call callbacks and update the state of directory watchers on platforms that don`t support recursive watching natively.
635
653
  */
636
- synchronousWatchDirectory?: string;
654
+ synchronousWatchDirectory?: boolean;
637
655
  /**
638
656
  * Remove a list of files from the watch mode's processing.
639
657
  */
@@ -678,7 +696,7 @@ export interface BuildOptionsDefinition {
678
696
  }
679
697
  export interface TsNodeDefinition {
680
698
  /**
681
- * ts-node options. See also: https://github.com/TypeStrong/ts-node#configuration-options
699
+ * ts-node options. See also: https://typestrong.org/ts-node/docs/configuration
682
700
  *
683
701
  * ts-node offers TypeScript execution and REPL for node.js, with source map support.
684
702
  */
@@ -768,7 +786,7 @@ export interface TsNodeDefinition {
768
786
  */
769
787
  jsxFragmentFactory?: string;
770
788
  /**
771
- * Specify module specifier used to import the JSX factory functions when using `jsx: react-jsx*`.`
789
+ * Specify module specifier used to import the JSX factory functions when using `jsx: react-jsx`.
772
790
  */
773
791
  jsxImportSource?: string;
774
792
  /**
@@ -783,7 +801,20 @@ export interface TsNodeDefinition {
783
801
  * Specify what module code is generated.
784
802
  */
785
803
  module?: (
786
- | ("CommonJS" | "AMD" | "System" | "UMD" | "ES6" | "ES2015" | "ES2020" | "ESNext" | "None")
804
+ | (
805
+ | "CommonJS"
806
+ | "AMD"
807
+ | "System"
808
+ | "UMD"
809
+ | "ES6"
810
+ | "ES2015"
811
+ | "ES2020"
812
+ | "ESNext"
813
+ | "None"
814
+ | "es2022"
815
+ | "node12"
816
+ | "nodenext"
817
+ )
787
818
  | {
788
819
  [k: string]: unknown;
789
820
  }
@@ -873,6 +904,10 @@ export interface TsNodeDefinition {
873
904
  * Disable resolving symlinks to their realpath. This correlates to the same flag in node.
874
905
  */
875
906
  preserveSymlinks?: boolean;
907
+ /**
908
+ * Preserve unused imported values in the JavaScript output that would otherwise be removed
909
+ */
910
+ preserveValueImports?: boolean;
876
911
  /**
877
912
  * Disable wiping the console in watch mode
878
913
  */
@@ -1131,6 +1166,7 @@ export interface TsNodeDefinition {
1131
1166
  | "ES2021.String"
1132
1167
  | "ES2021.WeakRef"
1133
1168
  | "ESNext.WeakRef"
1169
+ | "es2021.intl"
1134
1170
  )
1135
1171
  | {
1136
1172
  [k: string]: unknown;
@@ -1264,6 +1300,17 @@ export interface TsNodeDefinition {
1264
1300
  * Emit output files into `.ts-node` directory.
1265
1301
  */
1266
1302
  emit?: boolean;
1303
+ /**
1304
+ * Allows the usage of top level await in REPL.
1305
+ *
1306
+ * Uses node's implementation which accomplishes this with an AST syntax transformation.
1307
+ *
1308
+ * Enabled by default when tsconfig target is es2018 or above. Set to false to disable.
1309
+ *
1310
+ * **Note**: setting to `true` when tsconfig target is too low will throw an Error. Leave as `undefined`
1311
+ * to get default, automatic behavior.
1312
+ */
1313
+ experimentalReplAwait?: boolean;
1267
1314
  /**
1268
1315
  * Load "files" and "include" from `tsconfig.json` on startup.
1269
1316
  *
@@ -1288,6 +1335,23 @@ export interface TsNodeDefinition {
1288
1335
  * Logs TypeScript errors to stderr instead of throwing exceptions.
1289
1336
  */
1290
1337
  logError?: boolean;
1338
+ /**
1339
+ * Override certain paths to be compiled and executed as CommonJS or ECMAScript modules.
1340
+ * When overridden, the tsconfig "module" and package.json "type" fields are overridden.
1341
+ * This is useful because TypeScript files cannot use the .cjs nor .mjs file extensions;
1342
+ * it achieves the same effect.
1343
+ *
1344
+ * Each key is a glob pattern following the same rules as tsconfig's "include" array.
1345
+ * When multiple patterns match the same file, the last pattern takes precedence.
1346
+ *
1347
+ * `cjs` overrides matches files to compile and execute as CommonJS.
1348
+ * `esm` overrides matches files to compile and execute as native ECMAScript modules.
1349
+ * `package` overrides either of the above to default behavior, which obeys package.json "type" and
1350
+ * tsconfig.json "module" options.
1351
+ */
1352
+ moduleTypes?: {
1353
+ [k: string]: unknown;
1354
+ };
1291
1355
  /**
1292
1356
  * Re-order file extensions so that TypeScript imports are preferred.
1293
1357
  *
@@ -1307,6 +1371,11 @@ export interface TsNodeDefinition {
1307
1371
  * best results.
1308
1372
  */
1309
1373
  require?: string[];
1374
+ /**
1375
+ * Scope compiler to files within `scopeDir`.
1376
+ */
1377
+ scope?: boolean;
1378
+ scopeDir?: string;
1310
1379
  /**
1311
1380
  * Skip ignore check, so that compilation will be attempted for all files with matching extensions.
1312
1381
  */