@atlaspack/feature-flags 2.25.1 → 2.25.2
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 +18 -0
- package/dist/index.js +273 -0
- package/lib/index.js +72 -12
- package/lib/types/index.d.ts +71 -11
- package/package.json +1 -2
- package/src/index.ts +72 -13
- package/tsconfig.json +5 -2
- package/tsconfig.tsbuildinfo +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @atlaspack/feature-flags
|
|
2
2
|
|
|
3
|
+
## 2.25.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#790](https://github.com/atlassian-labs/atlaspack/pull/790) [`0207171`](https://github.com/atlassian-labs/atlaspack/commit/0207171e59e985c51e105aec2e0a99de174374bd) Thanks [@benjervis](https://github.com/benjervis)! - Clean up the `unusedComputedPropertyFix` feature flag
|
|
8
|
+
|
|
9
|
+
- [#791](https://github.com/atlassian-labs/atlaspack/pull/791) [`10ee3fa`](https://github.com/atlassian-labs/atlaspack/commit/10ee3fa5b75a92acde8973673d9b3c5b6f3958e5) Thanks [@benjervis](https://github.com/benjervis)! - Remove emptyFileStarRexportFix and make the flagged behaviour standard.
|
|
10
|
+
|
|
11
|
+
See PR [#685][pr] for details on the change.
|
|
12
|
+
|
|
13
|
+
[pr]: https://github.com/atlassian-labs/atlaspack/pull/685
|
|
14
|
+
|
|
15
|
+
- [#800](https://github.com/atlassian-labs/atlaspack/pull/800) [`1180103`](https://github.com/atlassian-labs/atlaspack/commit/118010351ed444f8178988afb3f77807154dd933) Thanks [@mattcompiles](https://github.com/mattcompiles)! - Fix errors when creating diagnostics with relative file paths
|
|
16
|
+
|
|
17
|
+
BREAKING CHANGE: The `remapSourceLocation` API in `@atlaspack/utils` now requires the project root
|
|
18
|
+
|
|
19
|
+
- [#781](https://github.com/atlassian-labs/atlaspack/pull/781) [`2bc93b1`](https://github.com/atlassian-labs/atlaspack/commit/2bc93b17cea07fd7cbb68acec84d8471345a22b4) Thanks [@matt-koko](https://github.com/matt-koko)! - add attribution to feature flags and eslint rule to enforce attribution convention
|
|
20
|
+
|
|
3
21
|
## 2.25.1
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,273 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// Converted from Flow to TypeScript
|
|
3
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
+
exports.DEFAULT_FEATURE_FLAGS = exports.CONSISTENCY_CHECK_VALUES = void 0;
|
|
5
|
+
exports.setFeatureFlags = setFeatureFlags;
|
|
6
|
+
exports.getFeatureFlag = getFeatureFlag;
|
|
7
|
+
exports.getFeatureFlagValue = getFeatureFlagValue;
|
|
8
|
+
exports.runWithConsistencyCheck = runWithConsistencyCheck;
|
|
9
|
+
exports.CONSISTENCY_CHECK_VALUES = Object.freeze([
|
|
10
|
+
'NEW',
|
|
11
|
+
'OLD',
|
|
12
|
+
'NEW_AND_CHECK',
|
|
13
|
+
'OLD_AND_CHECK',
|
|
14
|
+
]);
|
|
15
|
+
exports.DEFAULT_FEATURE_FLAGS = {
|
|
16
|
+
// This feature flag mostly exists to test the feature flag system, and doesn't have any build/runtime effect
|
|
17
|
+
exampleFeature: false,
|
|
18
|
+
exampleConsistencyCheckFeature: 'OLD',
|
|
19
|
+
/**
|
|
20
|
+
* Rust backed requests
|
|
21
|
+
*
|
|
22
|
+
* @author Matt Jones <mjones4@atlassian.com>
|
|
23
|
+
*/
|
|
24
|
+
atlaspackV3: false,
|
|
25
|
+
/**
|
|
26
|
+
* Use node.js implementation of @parcel/watcher watchman backend
|
|
27
|
+
*
|
|
28
|
+
* @author Pedro Tacla Yamada <pyamada@atlassian.com>
|
|
29
|
+
*/
|
|
30
|
+
useWatchmanWatcher: false,
|
|
31
|
+
/**
|
|
32
|
+
* Configure runtime to enable retriable dynamic imports
|
|
33
|
+
*
|
|
34
|
+
* @author David Alsh <dalsh@atlassian.com>
|
|
35
|
+
*/
|
|
36
|
+
importRetry: false,
|
|
37
|
+
/**
|
|
38
|
+
* Fixes quadratic cache invalidation issue
|
|
39
|
+
*
|
|
40
|
+
* @author Pedro Tacla Yamada <pyamada@atlassian.com>
|
|
41
|
+
*/
|
|
42
|
+
fixQuadraticCacheInvalidation: 'OLD',
|
|
43
|
+
/**
|
|
44
|
+
* Enables an experimental "conditional bundling" API - this allows the use of `importCond` syntax
|
|
45
|
+
* in order to have (consumer) feature flag driven bundling. This feature is very experimental,
|
|
46
|
+
* and requires server-side support.
|
|
47
|
+
*
|
|
48
|
+
* @author Jake Lane <jlane2@atlassian.com>
|
|
49
|
+
*/
|
|
50
|
+
conditionalBundlingApi: false,
|
|
51
|
+
/**
|
|
52
|
+
* Enable VCS mode. Expected values are:
|
|
53
|
+
* - OLD - default value, return watchman result
|
|
54
|
+
* - NEW_AND_CHECK - Return VCS result but still call watchman
|
|
55
|
+
* - NEW: Return VCS result, but don't call watchman
|
|
56
|
+
*
|
|
57
|
+
* @author Celeste Carloni <ccarloni@atlassian.com>
|
|
58
|
+
*/
|
|
59
|
+
vcsMode: 'OLD',
|
|
60
|
+
/**
|
|
61
|
+
* Refactor cache to:
|
|
62
|
+
* - Split writes into multiple entries
|
|
63
|
+
* - Remove "large file blob" writes
|
|
64
|
+
* - Reduce size of the caches by deduplicating data
|
|
65
|
+
*
|
|
66
|
+
* @author Pedro Tacla Yamada <pyamada@atlassian.com>
|
|
67
|
+
*/
|
|
68
|
+
cachePerformanceImprovements: process.env.ATLASPACK_BUILD_ENV === 'test',
|
|
69
|
+
/**
|
|
70
|
+
* Deduplicates environments across cache / memory entities
|
|
71
|
+
*
|
|
72
|
+
* @author Pedro Tacla Yamada <pyamada@atlassian.com>
|
|
73
|
+
*/
|
|
74
|
+
environmentDeduplication: false,
|
|
75
|
+
/**
|
|
76
|
+
* Enable scanning for the presence of loadable to determine side effects
|
|
77
|
+
*
|
|
78
|
+
* @author Ben Jervis <bjervis@atlassian.com>
|
|
79
|
+
*/
|
|
80
|
+
loadableSideEffects: false,
|
|
81
|
+
/**
|
|
82
|
+
* Enable performance optimization for the resolver specifier to_string
|
|
83
|
+
* conversions
|
|
84
|
+
*
|
|
85
|
+
* @author Pedro Tacla Yamada <pyamada@atlassian.com>
|
|
86
|
+
*/
|
|
87
|
+
reduceResolverStringCreation: false,
|
|
88
|
+
/**
|
|
89
|
+
* Add verbose metrics for request tracker invalidation.
|
|
90
|
+
* Default to true as it's a monitoring change. Can be turned off if necessary.
|
|
91
|
+
*
|
|
92
|
+
* @author Pedro Tacla Yamada <pyamada@atlassian.com>
|
|
93
|
+
*/
|
|
94
|
+
verboseRequestInvalidationStats: true,
|
|
95
|
+
/**
|
|
96
|
+
* Fixes source maps for inline bundles
|
|
97
|
+
*
|
|
98
|
+
* @author Pedro Tacla Yamada <pyamada@atlassian.com>
|
|
99
|
+
*/
|
|
100
|
+
inlineBundlesSourceMapFixes: false,
|
|
101
|
+
/** Enable patch project paths. This will patch the project paths to be relative to the project root.
|
|
102
|
+
* This feature is experimental and should not be used in production. It will used to test downloadble cache artefacts.
|
|
103
|
+
*
|
|
104
|
+
* @author Celeste Carloni <ccarloni@atlassian.com>
|
|
105
|
+
*/
|
|
106
|
+
patchProjectPaths: false,
|
|
107
|
+
/**
|
|
108
|
+
* Enables optimized inline string replacement perf for the packager.
|
|
109
|
+
* Used heavily for inline bundles.
|
|
110
|
+
*
|
|
111
|
+
* @author Matt Jones <mjones4@atlassian.com>
|
|
112
|
+
*/
|
|
113
|
+
inlineStringReplacementPerf: false,
|
|
114
|
+
/**
|
|
115
|
+
* Enable resolution of bundler config starting from the CWD
|
|
116
|
+
*
|
|
117
|
+
* @author Ben Jervis <bjervis@atlassian.com>
|
|
118
|
+
*/
|
|
119
|
+
resolveBundlerConfigFromCwd: false,
|
|
120
|
+
/**
|
|
121
|
+
* Enable a setting that allows for more assets to be scope hoisted, if
|
|
122
|
+
* they're safe to do so.
|
|
123
|
+
*
|
|
124
|
+
* @author Ben Jervis <bjervis@atlassian.com>
|
|
125
|
+
*/
|
|
126
|
+
applyScopeHoistingImprovement: false,
|
|
127
|
+
/**
|
|
128
|
+
* Enable a change where a constant module only have the namespacing object added in bundles where it is required
|
|
129
|
+
*
|
|
130
|
+
* @author Marcin Szczepanski <mszczepanski@atlassian.com>
|
|
131
|
+
*/
|
|
132
|
+
inlineConstOptimisationFix: false,
|
|
133
|
+
/**
|
|
134
|
+
* Improves/fixes HMR behaviour by:
|
|
135
|
+
* - Fixing HMR behaviour with lazy bundle edges
|
|
136
|
+
* - Moving the functionality of the react-refresh runtime into the react-refresh-wrap transformer
|
|
137
|
+
*
|
|
138
|
+
* @author Marcin Szczepanski <mszczepanski@atlassian.com>
|
|
139
|
+
*/
|
|
140
|
+
hmrImprovements: false,
|
|
141
|
+
/**
|
|
142
|
+
* Enables the new packaging progress CLI experience
|
|
143
|
+
*
|
|
144
|
+
* @author Matt Jones <mjones4@atlassian.com>
|
|
145
|
+
*/
|
|
146
|
+
cliProgressReportingImprovements: false,
|
|
147
|
+
/**
|
|
148
|
+
* Adds support for `webpackChunkName` comments in dynamic imports.
|
|
149
|
+
* Imports with the same `webpackChunkName` will be bundled together.
|
|
150
|
+
*
|
|
151
|
+
* @author Ben Jervis <bjervis@atlassian.com>
|
|
152
|
+
*/
|
|
153
|
+
supportWebpackChunkName: process.env.ATLASPACK_BUILD_ENV === 'test',
|
|
154
|
+
/**
|
|
155
|
+
* Enable a change to the conditional bundling loader to use a fallback bundle loading if the expected scripts aren't found
|
|
156
|
+
*
|
|
157
|
+
* Split into two flags, to allow usage in the dev or prod packagers separately
|
|
158
|
+
*
|
|
159
|
+
* @author Jake Lane <jlane2@atlassian.com>
|
|
160
|
+
*/
|
|
161
|
+
condbDevFallbackDev: false,
|
|
162
|
+
/**
|
|
163
|
+
*
|
|
164
|
+
* @author Jake Lane <jlane2@atlassian.com>
|
|
165
|
+
*/
|
|
166
|
+
condbDevFallbackProd: false,
|
|
167
|
+
/**
|
|
168
|
+
* Enable the new incremental bundling versioning logic which determines whether
|
|
169
|
+
* a full bundling pass is required based on the AssetGraph's bundlingVersion.
|
|
170
|
+
*
|
|
171
|
+
* @author Pedro Tacla Yamada <pyamada@atlassian.com>
|
|
172
|
+
*/
|
|
173
|
+
incrementalBundlingVersioning: process.env.ATLASPACK_BUILD_ENV === 'test',
|
|
174
|
+
/**
|
|
175
|
+
* Remove redundant shared bundles that are no longer required after merging
|
|
176
|
+
* async bundles.
|
|
177
|
+
*
|
|
178
|
+
* @author Matt Jones <mjones4@atlassian.com>
|
|
179
|
+
*/
|
|
180
|
+
removeRedundantSharedBundles: process.env.ATLASPACK_BUILD_ENV === 'test',
|
|
181
|
+
/**
|
|
182
|
+
* When enabled, single file output bundles have a stable name
|
|
183
|
+
*
|
|
184
|
+
* @author Marcin Szczepanski <mszczepanski@atlassian.com>
|
|
185
|
+
*/
|
|
186
|
+
singleFileOutputStableName: process.env.ATLASPACK_BUILD_ENV === 'test',
|
|
187
|
+
/**
|
|
188
|
+
* Enable optimised prelude for the ScopeHoistingPackager.
|
|
189
|
+
*
|
|
190
|
+
* @author Jake Lane <jlane2@atlassian.com>
|
|
191
|
+
*/
|
|
192
|
+
useNewPrelude: false,
|
|
193
|
+
/**
|
|
194
|
+
* Enable a fix for applyScopeHoistingImprovement that allows assets to still
|
|
195
|
+
* be at the top level of the bundle.
|
|
196
|
+
*
|
|
197
|
+
* @author Ben Jervis <bjervis@atlassian.com>
|
|
198
|
+
*/
|
|
199
|
+
applyScopeHoistingImprovementV2: false,
|
|
200
|
+
/**
|
|
201
|
+
* When enabled, if both explicit entries and explicit targets are specified,
|
|
202
|
+
* the source properties of those targets are used as filters against the base entries.
|
|
203
|
+
* This allows building only specific entries for specific targets.
|
|
204
|
+
*
|
|
205
|
+
* @author Marcin Szczepanski <mszczepanski@atlassian.com>
|
|
206
|
+
*/
|
|
207
|
+
allowExplicitTargetEntries: process.env.ATLASPACK_BUILD_ENV === 'test',
|
|
208
|
+
/**
|
|
209
|
+
* When enabled, the packager will avoid using the binding helper for exports where possible.
|
|
210
|
+
*
|
|
211
|
+
* @author Jake Lane <jlane2@atlassian.com>
|
|
212
|
+
*/
|
|
213
|
+
exportsRebindingOptimisation: false,
|
|
214
|
+
/**
|
|
215
|
+
* When enabled, allows custom per-target "env" properties to be used in transformers.
|
|
216
|
+
*
|
|
217
|
+
* @author Marcin Szczepanski <mszczepanski@atlassian.com>
|
|
218
|
+
*/
|
|
219
|
+
customEnvInTargets: process.env.ATLASPACK_BUILD_ENV === 'test',
|
|
220
|
+
/**
|
|
221
|
+
* When enabled, ensures the `unstableSingleFileOutput` environment property is preserved during CSS transformation
|
|
222
|
+
*
|
|
223
|
+
* @author Marcin Szczepanski <mszczepanski@atlassian.com>
|
|
224
|
+
*/
|
|
225
|
+
preserveUnstableSingleFileOutputInCss: process.env.ATLASPACK_BUILD_ENV === 'test',
|
|
226
|
+
/**
|
|
227
|
+
* When enabled, fixes handling of symbol locations when source maps contain
|
|
228
|
+
* project relative paths
|
|
229
|
+
*
|
|
230
|
+
* @author Matt Jones <mjones4@atlassian.com>
|
|
231
|
+
*/
|
|
232
|
+
symbolLocationFix: process.env.ATLASPACK_BUILD_ENV === 'test',
|
|
233
|
+
};
|
|
234
|
+
let featureFlagValues = { ...exports.DEFAULT_FEATURE_FLAGS };
|
|
235
|
+
function setFeatureFlags(flags) {
|
|
236
|
+
featureFlagValues = flags;
|
|
237
|
+
}
|
|
238
|
+
function getFeatureFlag(flagName) {
|
|
239
|
+
const value = featureFlagValues[flagName];
|
|
240
|
+
return value === true || value === 'NEW';
|
|
241
|
+
}
|
|
242
|
+
function getFeatureFlagValue(flagName) {
|
|
243
|
+
return featureFlagValues[flagName];
|
|
244
|
+
}
|
|
245
|
+
/**
|
|
246
|
+
* Run a function with a consistency check.
|
|
247
|
+
*/
|
|
248
|
+
function runWithConsistencyCheck(flag, oldFn, newFn, diffFn, report) {
|
|
249
|
+
const value = featureFlagValues[flag];
|
|
250
|
+
if (value === false || value === '' || value === 'OLD') {
|
|
251
|
+
return oldFn();
|
|
252
|
+
}
|
|
253
|
+
if (value === true || value === 'NEW') {
|
|
254
|
+
return newFn();
|
|
255
|
+
}
|
|
256
|
+
const oldStartTime = performance.now();
|
|
257
|
+
const oldResult = oldFn();
|
|
258
|
+
const oldExecutionTimeMs = performance.now() - oldStartTime;
|
|
259
|
+
const newStartTime = performance.now();
|
|
260
|
+
const newResult = newFn();
|
|
261
|
+
const newExecutionTimeMs = performance.now() - newStartTime;
|
|
262
|
+
const diff = diffFn(oldResult, newResult);
|
|
263
|
+
report({
|
|
264
|
+
isDifferent: diff.isDifferent,
|
|
265
|
+
oldExecutionTimeMs,
|
|
266
|
+
newExecutionTimeMs,
|
|
267
|
+
custom: diff.custom,
|
|
268
|
+
}, oldResult, newResult);
|
|
269
|
+
if (value === 'NEW_AND_CHECK') {
|
|
270
|
+
return newResult;
|
|
271
|
+
}
|
|
272
|
+
return oldResult;
|
|
273
|
+
}
|
package/lib/index.js
CHANGED
|
@@ -17,24 +17,34 @@ const DEFAULT_FEATURE_FLAGS = exports.DEFAULT_FEATURE_FLAGS = {
|
|
|
17
17
|
exampleConsistencyCheckFeature: 'OLD',
|
|
18
18
|
/**
|
|
19
19
|
* Rust backed requests
|
|
20
|
+
*
|
|
21
|
+
* @author Matt Jones <mjones4@atlassian.com>
|
|
20
22
|
*/
|
|
21
23
|
atlaspackV3: false,
|
|
22
24
|
/**
|
|
23
25
|
* Use node.js implementation of @parcel/watcher watchman backend
|
|
26
|
+
*
|
|
27
|
+
* @author Pedro Tacla Yamada <pyamada@atlassian.com>
|
|
24
28
|
*/
|
|
25
29
|
useWatchmanWatcher: false,
|
|
26
30
|
/**
|
|
27
31
|
* Configure runtime to enable retriable dynamic imports
|
|
32
|
+
*
|
|
33
|
+
* @author David Alsh <dalsh@atlassian.com>
|
|
28
34
|
*/
|
|
29
35
|
importRetry: false,
|
|
30
36
|
/**
|
|
31
37
|
* Fixes quadratic cache invalidation issue
|
|
38
|
+
*
|
|
39
|
+
* @author Pedro Tacla Yamada <pyamada@atlassian.com>
|
|
32
40
|
*/
|
|
33
41
|
fixQuadraticCacheInvalidation: 'OLD',
|
|
34
42
|
/**
|
|
35
43
|
* Enables an experimental "conditional bundling" API - this allows the use of `importCond` syntax
|
|
36
44
|
* in order to have (consumer) feature flag driven bundling. This feature is very experimental,
|
|
37
45
|
* and requires server-side support.
|
|
46
|
+
*
|
|
47
|
+
* @author Jake Lane <jlane2@atlassian.com>
|
|
38
48
|
*/
|
|
39
49
|
conditionalBundlingApi: false,
|
|
40
50
|
/**
|
|
@@ -42,6 +52,8 @@ const DEFAULT_FEATURE_FLAGS = exports.DEFAULT_FEATURE_FLAGS = {
|
|
|
42
52
|
* - OLD - default value, return watchman result
|
|
43
53
|
* - NEW_AND_CHECK - Return VCS result but still call watchman
|
|
44
54
|
* - NEW: Return VCS result, but don't call watchman
|
|
55
|
+
*
|
|
56
|
+
* @author Celeste Carloni <ccarloni@atlassian.com>
|
|
45
57
|
*/
|
|
46
58
|
vcsMode: 'OLD',
|
|
47
59
|
/**
|
|
@@ -49,126 +61,174 @@ const DEFAULT_FEATURE_FLAGS = exports.DEFAULT_FEATURE_FLAGS = {
|
|
|
49
61
|
* - Split writes into multiple entries
|
|
50
62
|
* - Remove "large file blob" writes
|
|
51
63
|
* - Reduce size of the caches by deduplicating data
|
|
64
|
+
*
|
|
65
|
+
* @author Pedro Tacla Yamada <pyamada@atlassian.com>
|
|
52
66
|
*/
|
|
53
67
|
cachePerformanceImprovements: process.env.ATLASPACK_BUILD_ENV === 'test',
|
|
54
68
|
/**
|
|
55
69
|
* Deduplicates environments across cache / memory entities
|
|
70
|
+
*
|
|
71
|
+
* @author Pedro Tacla Yamada <pyamada@atlassian.com>
|
|
56
72
|
*/
|
|
57
73
|
environmentDeduplication: false,
|
|
58
74
|
/**
|
|
59
75
|
* Enable scanning for the presence of loadable to determine side effects
|
|
76
|
+
*
|
|
77
|
+
* @author Ben Jervis <bjervis@atlassian.com>
|
|
60
78
|
*/
|
|
61
79
|
loadableSideEffects: false,
|
|
62
80
|
/**
|
|
63
81
|
* Enable performance optimization for the resolver specifier to_string
|
|
64
82
|
* conversions
|
|
83
|
+
*
|
|
84
|
+
* @author Pedro Tacla Yamada <pyamada@atlassian.com>
|
|
65
85
|
*/
|
|
66
86
|
reduceResolverStringCreation: false,
|
|
67
87
|
/**
|
|
68
88
|
* Add verbose metrics for request tracker invalidation.
|
|
69
89
|
* Default to true as it's a monitoring change. Can be turned off if necessary.
|
|
90
|
+
*
|
|
91
|
+
* @author Pedro Tacla Yamada <pyamada@atlassian.com>
|
|
70
92
|
*/
|
|
71
93
|
verboseRequestInvalidationStats: true,
|
|
72
94
|
/**
|
|
73
95
|
* Fixes source maps for inline bundles
|
|
96
|
+
*
|
|
97
|
+
* @author Pedro Tacla Yamada <pyamada@atlassian.com>
|
|
74
98
|
*/
|
|
75
99
|
inlineBundlesSourceMapFixes: false,
|
|
76
100
|
/** Enable patch project paths. This will patch the project paths to be relative to the project root.
|
|
77
101
|
* This feature is experimental and should not be used in production. It will used to test downloadble cache artefacts.
|
|
102
|
+
*
|
|
103
|
+
* @author Celeste Carloni <ccarloni@atlassian.com>
|
|
78
104
|
*/
|
|
79
105
|
patchProjectPaths: false,
|
|
80
106
|
/**
|
|
81
107
|
* Enables optimized inline string replacement perf for the packager.
|
|
82
108
|
* Used heavily for inline bundles.
|
|
109
|
+
*
|
|
110
|
+
* @author Matt Jones <mjones4@atlassian.com>
|
|
83
111
|
*/
|
|
84
112
|
inlineStringReplacementPerf: false,
|
|
85
113
|
/**
|
|
86
114
|
* Enable resolution of bundler config starting from the CWD
|
|
115
|
+
*
|
|
116
|
+
* @author Ben Jervis <bjervis@atlassian.com>
|
|
87
117
|
*/
|
|
88
118
|
resolveBundlerConfigFromCwd: false,
|
|
89
119
|
/**
|
|
90
120
|
* Enable a setting that allows for more assets to be scope hoisted, if
|
|
91
121
|
* they're safe to do so.
|
|
122
|
+
*
|
|
123
|
+
* @author Ben Jervis <bjervis@atlassian.com>
|
|
92
124
|
*/
|
|
93
125
|
applyScopeHoistingImprovement: false,
|
|
94
126
|
/**
|
|
95
127
|
* Enable a change where a constant module only have the namespacing object added in bundles where it is required
|
|
128
|
+
*
|
|
129
|
+
* @author Marcin Szczepanski <mszczepanski@atlassian.com>
|
|
96
130
|
*/
|
|
97
131
|
inlineConstOptimisationFix: false,
|
|
98
132
|
/**
|
|
99
133
|
* Improves/fixes HMR behaviour by:
|
|
100
134
|
* - Fixing HMR behaviour with lazy bundle edges
|
|
101
135
|
* - Moving the functionality of the react-refresh runtime into the react-refresh-wrap transformer
|
|
136
|
+
*
|
|
137
|
+
* @author Marcin Szczepanski <mszczepanski@atlassian.com>
|
|
102
138
|
*/
|
|
103
139
|
hmrImprovements: false,
|
|
104
|
-
/**
|
|
105
|
-
* Fixes a bug where imported objects that are accessed with non-static
|
|
106
|
-
* properties (e.g. `CONSTANTS['api_' + endpoint`]) would not be recognised as
|
|
107
|
-
* being used, and thus not included in the bundle.
|
|
108
|
-
*/
|
|
109
|
-
unusedComputedPropertyFix: process.env.ATLASPACK_BUILD_ENV === 'test',
|
|
110
|
-
/**
|
|
111
|
-
* Fixes an issue where star re-exports of empty files (usually occurring in compiled typescript libraries)
|
|
112
|
-
* could cause exports to undefined at runtime.
|
|
113
|
-
*/
|
|
114
|
-
emptyFileStarRexportFix: process.env.ATLASPACK_BUILD_ENV === 'test',
|
|
115
140
|
/**
|
|
116
141
|
* Enables the new packaging progress CLI experience
|
|
142
|
+
*
|
|
143
|
+
* @author Matt Jones <mjones4@atlassian.com>
|
|
117
144
|
*/
|
|
118
145
|
cliProgressReportingImprovements: false,
|
|
119
146
|
/**
|
|
120
147
|
* Adds support for `webpackChunkName` comments in dynamic imports.
|
|
121
148
|
* Imports with the same `webpackChunkName` will be bundled together.
|
|
149
|
+
*
|
|
150
|
+
* @author Ben Jervis <bjervis@atlassian.com>
|
|
122
151
|
*/
|
|
123
152
|
supportWebpackChunkName: process.env.ATLASPACK_BUILD_ENV === 'test',
|
|
124
153
|
/**
|
|
125
154
|
* Enable a change to the conditional bundling loader to use a fallback bundle loading if the expected scripts aren't found
|
|
126
155
|
*
|
|
127
156
|
* Split into two flags, to allow usage in the dev or prod packagers separately
|
|
157
|
+
*
|
|
158
|
+
* @author Jake Lane <jlane2@atlassian.com>
|
|
128
159
|
*/
|
|
129
160
|
condbDevFallbackDev: false,
|
|
161
|
+
/**
|
|
162
|
+
*
|
|
163
|
+
* @author Jake Lane <jlane2@atlassian.com>
|
|
164
|
+
*/
|
|
130
165
|
condbDevFallbackProd: false,
|
|
131
166
|
/**
|
|
132
167
|
* Enable the new incremental bundling versioning logic which determines whether
|
|
133
168
|
* a full bundling pass is required based on the AssetGraph's bundlingVersion.
|
|
169
|
+
*
|
|
170
|
+
* @author Pedro Tacla Yamada <pyamada@atlassian.com>
|
|
134
171
|
*/
|
|
135
172
|
incrementalBundlingVersioning: process.env.ATLASPACK_BUILD_ENV === 'test',
|
|
136
173
|
/**
|
|
137
174
|
* Remove redundant shared bundles that are no longer required after merging
|
|
138
175
|
* async bundles.
|
|
176
|
+
*
|
|
177
|
+
* @author Matt Jones <mjones4@atlassian.com>
|
|
139
178
|
*/
|
|
140
179
|
removeRedundantSharedBundles: process.env.ATLASPACK_BUILD_ENV === 'test',
|
|
141
180
|
/**
|
|
142
181
|
* When enabled, single file output bundles have a stable name
|
|
182
|
+
*
|
|
183
|
+
* @author Marcin Szczepanski <mszczepanski@atlassian.com>
|
|
143
184
|
*/
|
|
144
185
|
singleFileOutputStableName: process.env.ATLASPACK_BUILD_ENV === 'test',
|
|
145
186
|
/**
|
|
146
187
|
* Enable optimised prelude for the ScopeHoistingPackager.
|
|
188
|
+
*
|
|
189
|
+
* @author Jake Lane <jlane2@atlassian.com>
|
|
147
190
|
*/
|
|
148
191
|
useNewPrelude: false,
|
|
149
192
|
/**
|
|
150
193
|
* Enable a fix for applyScopeHoistingImprovement that allows assets to still
|
|
151
194
|
* be at the top level of the bundle.
|
|
195
|
+
*
|
|
196
|
+
* @author Ben Jervis <bjervis@atlassian.com>
|
|
152
197
|
*/
|
|
153
198
|
applyScopeHoistingImprovementV2: false,
|
|
154
199
|
/**
|
|
155
200
|
* When enabled, if both explicit entries and explicit targets are specified,
|
|
156
201
|
* the source properties of those targets are used as filters against the base entries.
|
|
157
202
|
* This allows building only specific entries for specific targets.
|
|
203
|
+
*
|
|
204
|
+
* @author Marcin Szczepanski <mszczepanski@atlassian.com>
|
|
158
205
|
*/
|
|
159
206
|
allowExplicitTargetEntries: process.env.ATLASPACK_BUILD_ENV === 'test',
|
|
160
207
|
/**
|
|
161
208
|
* When enabled, the packager will avoid using the binding helper for exports where possible.
|
|
209
|
+
*
|
|
210
|
+
* @author Jake Lane <jlane2@atlassian.com>
|
|
162
211
|
*/
|
|
163
212
|
exportsRebindingOptimisation: false,
|
|
164
213
|
/**
|
|
165
214
|
* When enabled, allows custom per-target "env" properties to be used in transformers.
|
|
215
|
+
*
|
|
216
|
+
* @author Marcin Szczepanski <mszczepanski@atlassian.com>
|
|
166
217
|
*/
|
|
167
218
|
customEnvInTargets: process.env.ATLASPACK_BUILD_ENV === 'test',
|
|
168
219
|
/**
|
|
169
220
|
* When enabled, ensures the `unstableSingleFileOutput` environment property is preserved during CSS transformation
|
|
221
|
+
*
|
|
222
|
+
* @author Marcin Szczepanski <mszczepanski@atlassian.com>
|
|
223
|
+
*/
|
|
224
|
+
preserveUnstableSingleFileOutputInCss: process.env.ATLASPACK_BUILD_ENV === 'test',
|
|
225
|
+
/**
|
|
226
|
+
* When enabled, fixes handling of symbol locations when source maps contain
|
|
227
|
+
* project relative paths
|
|
228
|
+
*
|
|
229
|
+
* @author Matt Jones <mjones4@atlassian.com>
|
|
170
230
|
*/
|
|
171
|
-
|
|
231
|
+
symbolLocationFix: process.env.ATLASPACK_BUILD_ENV === 'test'
|
|
172
232
|
};
|
|
173
233
|
let featureFlagValues = {
|
|
174
234
|
...DEFAULT_FEATURE_FLAGS
|
package/lib/types/index.d.ts
CHANGED
|
@@ -5,24 +5,34 @@ export declare const DEFAULT_FEATURE_FLAGS: {
|
|
|
5
5
|
exampleConsistencyCheckFeature: ConsistencyCheckFeatureFlagValue;
|
|
6
6
|
/**
|
|
7
7
|
* Rust backed requests
|
|
8
|
+
*
|
|
9
|
+
* @author Matt Jones <mjones4@atlassian.com>
|
|
8
10
|
*/
|
|
9
11
|
atlaspackV3: boolean;
|
|
10
12
|
/**
|
|
11
13
|
* Use node.js implementation of @parcel/watcher watchman backend
|
|
14
|
+
*
|
|
15
|
+
* @author Pedro Tacla Yamada <pyamada@atlassian.com>
|
|
12
16
|
*/
|
|
13
17
|
useWatchmanWatcher: boolean;
|
|
14
18
|
/**
|
|
15
19
|
* Configure runtime to enable retriable dynamic imports
|
|
20
|
+
*
|
|
21
|
+
* @author David Alsh <dalsh@atlassian.com>
|
|
16
22
|
*/
|
|
17
23
|
importRetry: boolean;
|
|
18
24
|
/**
|
|
19
25
|
* Fixes quadratic cache invalidation issue
|
|
26
|
+
*
|
|
27
|
+
* @author Pedro Tacla Yamada <pyamada@atlassian.com>
|
|
20
28
|
*/
|
|
21
29
|
fixQuadraticCacheInvalidation: ConsistencyCheckFeatureFlagValue;
|
|
22
30
|
/**
|
|
23
31
|
* Enables an experimental "conditional bundling" API - this allows the use of `importCond` syntax
|
|
24
32
|
* in order to have (consumer) feature flag driven bundling. This feature is very experimental,
|
|
25
33
|
* and requires server-side support.
|
|
34
|
+
*
|
|
35
|
+
* @author Jake Lane <jlane2@atlassian.com>
|
|
26
36
|
*/
|
|
27
37
|
conditionalBundlingApi: boolean;
|
|
28
38
|
/**
|
|
@@ -30,6 +40,8 @@ export declare const DEFAULT_FEATURE_FLAGS: {
|
|
|
30
40
|
* - OLD - default value, return watchman result
|
|
31
41
|
* - NEW_AND_CHECK - Return VCS result but still call watchman
|
|
32
42
|
* - NEW: Return VCS result, but don't call watchman
|
|
43
|
+
*
|
|
44
|
+
* @author Celeste Carloni <ccarloni@atlassian.com>
|
|
33
45
|
*/
|
|
34
46
|
vcsMode: ConsistencyCheckFeatureFlagValue;
|
|
35
47
|
/**
|
|
@@ -37,126 +49,174 @@ export declare const DEFAULT_FEATURE_FLAGS: {
|
|
|
37
49
|
* - Split writes into multiple entries
|
|
38
50
|
* - Remove "large file blob" writes
|
|
39
51
|
* - Reduce size of the caches by deduplicating data
|
|
52
|
+
*
|
|
53
|
+
* @author Pedro Tacla Yamada <pyamada@atlassian.com>
|
|
40
54
|
*/
|
|
41
55
|
cachePerformanceImprovements: boolean;
|
|
42
56
|
/**
|
|
43
57
|
* Deduplicates environments across cache / memory entities
|
|
58
|
+
*
|
|
59
|
+
* @author Pedro Tacla Yamada <pyamada@atlassian.com>
|
|
44
60
|
*/
|
|
45
61
|
environmentDeduplication: boolean;
|
|
46
62
|
/**
|
|
47
63
|
* Enable scanning for the presence of loadable to determine side effects
|
|
64
|
+
*
|
|
65
|
+
* @author Ben Jervis <bjervis@atlassian.com>
|
|
48
66
|
*/
|
|
49
67
|
loadableSideEffects: boolean;
|
|
50
68
|
/**
|
|
51
69
|
* Enable performance optimization for the resolver specifier to_string
|
|
52
70
|
* conversions
|
|
71
|
+
*
|
|
72
|
+
* @author Pedro Tacla Yamada <pyamada@atlassian.com>
|
|
53
73
|
*/
|
|
54
74
|
reduceResolverStringCreation: boolean;
|
|
55
75
|
/**
|
|
56
76
|
* Add verbose metrics for request tracker invalidation.
|
|
57
77
|
* Default to true as it's a monitoring change. Can be turned off if necessary.
|
|
78
|
+
*
|
|
79
|
+
* @author Pedro Tacla Yamada <pyamada@atlassian.com>
|
|
58
80
|
*/
|
|
59
81
|
verboseRequestInvalidationStats: boolean;
|
|
60
82
|
/**
|
|
61
83
|
* Fixes source maps for inline bundles
|
|
84
|
+
*
|
|
85
|
+
* @author Pedro Tacla Yamada <pyamada@atlassian.com>
|
|
62
86
|
*/
|
|
63
87
|
inlineBundlesSourceMapFixes: boolean;
|
|
64
88
|
/** Enable patch project paths. This will patch the project paths to be relative to the project root.
|
|
65
89
|
* This feature is experimental and should not be used in production. It will used to test downloadble cache artefacts.
|
|
90
|
+
*
|
|
91
|
+
* @author Celeste Carloni <ccarloni@atlassian.com>
|
|
66
92
|
*/
|
|
67
93
|
patchProjectPaths: boolean;
|
|
68
94
|
/**
|
|
69
95
|
* Enables optimized inline string replacement perf for the packager.
|
|
70
96
|
* Used heavily for inline bundles.
|
|
97
|
+
*
|
|
98
|
+
* @author Matt Jones <mjones4@atlassian.com>
|
|
71
99
|
*/
|
|
72
100
|
inlineStringReplacementPerf: boolean;
|
|
73
101
|
/**
|
|
74
102
|
* Enable resolution of bundler config starting from the CWD
|
|
103
|
+
*
|
|
104
|
+
* @author Ben Jervis <bjervis@atlassian.com>
|
|
75
105
|
*/
|
|
76
106
|
resolveBundlerConfigFromCwd: boolean;
|
|
77
107
|
/**
|
|
78
108
|
* Enable a setting that allows for more assets to be scope hoisted, if
|
|
79
109
|
* they're safe to do so.
|
|
110
|
+
*
|
|
111
|
+
* @author Ben Jervis <bjervis@atlassian.com>
|
|
80
112
|
*/
|
|
81
113
|
applyScopeHoistingImprovement: boolean;
|
|
82
114
|
/**
|
|
83
115
|
* Enable a change where a constant module only have the namespacing object added in bundles where it is required
|
|
116
|
+
*
|
|
117
|
+
* @author Marcin Szczepanski <mszczepanski@atlassian.com>
|
|
84
118
|
*/
|
|
85
119
|
inlineConstOptimisationFix: boolean;
|
|
86
120
|
/**
|
|
87
121
|
* Improves/fixes HMR behaviour by:
|
|
88
122
|
* - Fixing HMR behaviour with lazy bundle edges
|
|
89
123
|
* - Moving the functionality of the react-refresh runtime into the react-refresh-wrap transformer
|
|
124
|
+
*
|
|
125
|
+
* @author Marcin Szczepanski <mszczepanski@atlassian.com>
|
|
90
126
|
*/
|
|
91
127
|
hmrImprovements: boolean;
|
|
92
|
-
/**
|
|
93
|
-
* Fixes a bug where imported objects that are accessed with non-static
|
|
94
|
-
* properties (e.g. `CONSTANTS['api_' + endpoint`]) would not be recognised as
|
|
95
|
-
* being used, and thus not included in the bundle.
|
|
96
|
-
*/
|
|
97
|
-
unusedComputedPropertyFix: boolean;
|
|
98
|
-
/**
|
|
99
|
-
* Fixes an issue where star re-exports of empty files (usually occurring in compiled typescript libraries)
|
|
100
|
-
* could cause exports to undefined at runtime.
|
|
101
|
-
*/
|
|
102
|
-
emptyFileStarRexportFix: boolean;
|
|
103
128
|
/**
|
|
104
129
|
* Enables the new packaging progress CLI experience
|
|
130
|
+
*
|
|
131
|
+
* @author Matt Jones <mjones4@atlassian.com>
|
|
105
132
|
*/
|
|
106
133
|
cliProgressReportingImprovements: boolean;
|
|
107
134
|
/**
|
|
108
135
|
* Adds support for `webpackChunkName` comments in dynamic imports.
|
|
109
136
|
* Imports with the same `webpackChunkName` will be bundled together.
|
|
137
|
+
*
|
|
138
|
+
* @author Ben Jervis <bjervis@atlassian.com>
|
|
110
139
|
*/
|
|
111
140
|
supportWebpackChunkName: boolean;
|
|
112
141
|
/**
|
|
113
142
|
* Enable a change to the conditional bundling loader to use a fallback bundle loading if the expected scripts aren't found
|
|
114
143
|
*
|
|
115
144
|
* Split into two flags, to allow usage in the dev or prod packagers separately
|
|
145
|
+
*
|
|
146
|
+
* @author Jake Lane <jlane2@atlassian.com>
|
|
116
147
|
*/
|
|
117
148
|
condbDevFallbackDev: boolean;
|
|
149
|
+
/**
|
|
150
|
+
*
|
|
151
|
+
* @author Jake Lane <jlane2@atlassian.com>
|
|
152
|
+
*/
|
|
118
153
|
condbDevFallbackProd: boolean;
|
|
119
154
|
/**
|
|
120
155
|
* Enable the new incremental bundling versioning logic which determines whether
|
|
121
156
|
* a full bundling pass is required based on the AssetGraph's bundlingVersion.
|
|
157
|
+
*
|
|
158
|
+
* @author Pedro Tacla Yamada <pyamada@atlassian.com>
|
|
122
159
|
*/
|
|
123
160
|
incrementalBundlingVersioning: boolean;
|
|
124
161
|
/**
|
|
125
162
|
* Remove redundant shared bundles that are no longer required after merging
|
|
126
163
|
* async bundles.
|
|
164
|
+
*
|
|
165
|
+
* @author Matt Jones <mjones4@atlassian.com>
|
|
127
166
|
*/
|
|
128
167
|
removeRedundantSharedBundles: boolean;
|
|
129
168
|
/**
|
|
130
169
|
* When enabled, single file output bundles have a stable name
|
|
170
|
+
*
|
|
171
|
+
* @author Marcin Szczepanski <mszczepanski@atlassian.com>
|
|
131
172
|
*/
|
|
132
173
|
singleFileOutputStableName: boolean;
|
|
133
174
|
/**
|
|
134
175
|
* Enable optimised prelude for the ScopeHoistingPackager.
|
|
176
|
+
*
|
|
177
|
+
* @author Jake Lane <jlane2@atlassian.com>
|
|
135
178
|
*/
|
|
136
179
|
useNewPrelude: boolean;
|
|
137
180
|
/**
|
|
138
181
|
* Enable a fix for applyScopeHoistingImprovement that allows assets to still
|
|
139
182
|
* be at the top level of the bundle.
|
|
183
|
+
*
|
|
184
|
+
* @author Ben Jervis <bjervis@atlassian.com>
|
|
140
185
|
*/
|
|
141
186
|
applyScopeHoistingImprovementV2: boolean;
|
|
142
187
|
/**
|
|
143
188
|
* When enabled, if both explicit entries and explicit targets are specified,
|
|
144
189
|
* the source properties of those targets are used as filters against the base entries.
|
|
145
190
|
* This allows building only specific entries for specific targets.
|
|
191
|
+
*
|
|
192
|
+
* @author Marcin Szczepanski <mszczepanski@atlassian.com>
|
|
146
193
|
*/
|
|
147
194
|
allowExplicitTargetEntries: boolean;
|
|
148
195
|
/**
|
|
149
196
|
* When enabled, the packager will avoid using the binding helper for exports where possible.
|
|
197
|
+
*
|
|
198
|
+
* @author Jake Lane <jlane2@atlassian.com>
|
|
150
199
|
*/
|
|
151
200
|
exportsRebindingOptimisation: boolean;
|
|
152
201
|
/**
|
|
153
202
|
* When enabled, allows custom per-target "env" properties to be used in transformers.
|
|
203
|
+
*
|
|
204
|
+
* @author Marcin Szczepanski <mszczepanski@atlassian.com>
|
|
154
205
|
*/
|
|
155
206
|
customEnvInTargets: boolean;
|
|
156
207
|
/**
|
|
157
208
|
* When enabled, ensures the `unstableSingleFileOutput` environment property is preserved during CSS transformation
|
|
209
|
+
*
|
|
210
|
+
* @author Marcin Szczepanski <mszczepanski@atlassian.com>
|
|
158
211
|
*/
|
|
159
212
|
preserveUnstableSingleFileOutputInCss: boolean;
|
|
213
|
+
/**
|
|
214
|
+
* When enabled, fixes handling of symbol locations when source maps contain
|
|
215
|
+
* project relative paths
|
|
216
|
+
*
|
|
217
|
+
* @author Matt Jones <mjones4@atlassian.com>
|
|
218
|
+
*/
|
|
219
|
+
symbolLocationFix: boolean;
|
|
160
220
|
};
|
|
161
221
|
export type FeatureFlags = typeof DEFAULT_FEATURE_FLAGS;
|
|
162
222
|
export declare function setFeatureFlags(flags: FeatureFlags): void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaspack/feature-flags",
|
|
3
|
-
"version": "2.25.
|
|
3
|
+
"version": "2.25.2",
|
|
4
4
|
"description": "Provides internal feature-flags for the atlaspack codebase.",
|
|
5
5
|
"license": "(MIT OR Apache-2.0)",
|
|
6
6
|
"publishConfig": {
|
|
@@ -14,7 +14,6 @@
|
|
|
14
14
|
"source": "./src/index.ts",
|
|
15
15
|
"types": "./lib/types/index.d.ts",
|
|
16
16
|
"scripts": {
|
|
17
|
-
"check-ts": "tsc --emitDeclarationOnly --rootDir src",
|
|
18
17
|
"build:lib": "gulp build --gulpfile ../../../gulpfile.js --cwd ."
|
|
19
18
|
},
|
|
20
19
|
"engines": {
|
package/src/index.ts
CHANGED
|
@@ -17,21 +17,29 @@ export const DEFAULT_FEATURE_FLAGS = {
|
|
|
17
17
|
|
|
18
18
|
/**
|
|
19
19
|
* Rust backed requests
|
|
20
|
+
*
|
|
21
|
+
* @author Matt Jones <mjones4@atlassian.com>
|
|
20
22
|
*/
|
|
21
23
|
atlaspackV3: false,
|
|
22
24
|
|
|
23
25
|
/**
|
|
24
26
|
* Use node.js implementation of @parcel/watcher watchman backend
|
|
27
|
+
*
|
|
28
|
+
* @author Pedro Tacla Yamada <pyamada@atlassian.com>
|
|
25
29
|
*/
|
|
26
30
|
useWatchmanWatcher: false,
|
|
27
31
|
|
|
28
32
|
/**
|
|
29
33
|
* Configure runtime to enable retriable dynamic imports
|
|
34
|
+
*
|
|
35
|
+
* @author David Alsh <dalsh@atlassian.com>
|
|
30
36
|
*/
|
|
31
37
|
importRetry: false,
|
|
32
38
|
|
|
33
39
|
/**
|
|
34
40
|
* Fixes quadratic cache invalidation issue
|
|
41
|
+
*
|
|
42
|
+
* @author Pedro Tacla Yamada <pyamada@atlassian.com>
|
|
35
43
|
*/
|
|
36
44
|
fixQuadraticCacheInvalidation: 'OLD' as ConsistencyCheckFeatureFlagValue,
|
|
37
45
|
|
|
@@ -39,6 +47,8 @@ export const DEFAULT_FEATURE_FLAGS = {
|
|
|
39
47
|
* Enables an experimental "conditional bundling" API - this allows the use of `importCond` syntax
|
|
40
48
|
* in order to have (consumer) feature flag driven bundling. This feature is very experimental,
|
|
41
49
|
* and requires server-side support.
|
|
50
|
+
*
|
|
51
|
+
* @author Jake Lane <jlane2@atlassian.com>
|
|
42
52
|
*/
|
|
43
53
|
conditionalBundlingApi: false,
|
|
44
54
|
|
|
@@ -47,6 +57,8 @@ export const DEFAULT_FEATURE_FLAGS = {
|
|
|
47
57
|
* - OLD - default value, return watchman result
|
|
48
58
|
* - NEW_AND_CHECK - Return VCS result but still call watchman
|
|
49
59
|
* - NEW: Return VCS result, but don't call watchman
|
|
60
|
+
*
|
|
61
|
+
* @author Celeste Carloni <ccarloni@atlassian.com>
|
|
50
62
|
*/
|
|
51
63
|
vcsMode: 'OLD' as ConsistencyCheckFeatureFlagValue,
|
|
52
64
|
|
|
@@ -55,60 +67,82 @@ export const DEFAULT_FEATURE_FLAGS = {
|
|
|
55
67
|
* - Split writes into multiple entries
|
|
56
68
|
* - Remove "large file blob" writes
|
|
57
69
|
* - Reduce size of the caches by deduplicating data
|
|
70
|
+
*
|
|
71
|
+
* @author Pedro Tacla Yamada <pyamada@atlassian.com>
|
|
58
72
|
*/
|
|
59
73
|
cachePerformanceImprovements: process.env.ATLASPACK_BUILD_ENV === 'test',
|
|
60
74
|
|
|
61
75
|
/**
|
|
62
76
|
* Deduplicates environments across cache / memory entities
|
|
77
|
+
*
|
|
78
|
+
* @author Pedro Tacla Yamada <pyamada@atlassian.com>
|
|
63
79
|
*/
|
|
64
80
|
environmentDeduplication: false,
|
|
65
81
|
|
|
66
82
|
/**
|
|
67
83
|
* Enable scanning for the presence of loadable to determine side effects
|
|
84
|
+
*
|
|
85
|
+
* @author Ben Jervis <bjervis@atlassian.com>
|
|
68
86
|
*/
|
|
69
87
|
loadableSideEffects: false,
|
|
70
88
|
|
|
71
89
|
/**
|
|
72
90
|
* Enable performance optimization for the resolver specifier to_string
|
|
73
91
|
* conversions
|
|
92
|
+
*
|
|
93
|
+
* @author Pedro Tacla Yamada <pyamada@atlassian.com>
|
|
74
94
|
*/
|
|
75
95
|
reduceResolverStringCreation: false,
|
|
76
96
|
|
|
77
97
|
/**
|
|
78
98
|
* Add verbose metrics for request tracker invalidation.
|
|
79
99
|
* Default to true as it's a monitoring change. Can be turned off if necessary.
|
|
100
|
+
*
|
|
101
|
+
* @author Pedro Tacla Yamada <pyamada@atlassian.com>
|
|
80
102
|
*/
|
|
81
103
|
verboseRequestInvalidationStats: true,
|
|
82
104
|
|
|
83
105
|
/**
|
|
84
106
|
* Fixes source maps for inline bundles
|
|
107
|
+
*
|
|
108
|
+
* @author Pedro Tacla Yamada <pyamada@atlassian.com>
|
|
85
109
|
*/
|
|
86
110
|
inlineBundlesSourceMapFixes: false,
|
|
87
111
|
|
|
88
112
|
/** Enable patch project paths. This will patch the project paths to be relative to the project root.
|
|
89
113
|
* This feature is experimental and should not be used in production. It will used to test downloadble cache artefacts.
|
|
114
|
+
*
|
|
115
|
+
* @author Celeste Carloni <ccarloni@atlassian.com>
|
|
90
116
|
*/
|
|
91
117
|
patchProjectPaths: false,
|
|
92
118
|
|
|
93
119
|
/**
|
|
94
120
|
* Enables optimized inline string replacement perf for the packager.
|
|
95
121
|
* Used heavily for inline bundles.
|
|
122
|
+
*
|
|
123
|
+
* @author Matt Jones <mjones4@atlassian.com>
|
|
96
124
|
*/
|
|
97
125
|
inlineStringReplacementPerf: false,
|
|
98
126
|
|
|
99
127
|
/**
|
|
100
128
|
* Enable resolution of bundler config starting from the CWD
|
|
129
|
+
*
|
|
130
|
+
* @author Ben Jervis <bjervis@atlassian.com>
|
|
101
131
|
*/
|
|
102
132
|
resolveBundlerConfigFromCwd: false,
|
|
103
133
|
|
|
104
134
|
/**
|
|
105
135
|
* Enable a setting that allows for more assets to be scope hoisted, if
|
|
106
136
|
* they're safe to do so.
|
|
137
|
+
*
|
|
138
|
+
* @author Ben Jervis <bjervis@atlassian.com>
|
|
107
139
|
*/
|
|
108
140
|
applyScopeHoistingImprovement: false,
|
|
109
141
|
|
|
110
142
|
/**
|
|
111
143
|
* Enable a change where a constant module only have the namespacing object added in bundles where it is required
|
|
144
|
+
*
|
|
145
|
+
* @author Marcin Szczepanski <mszczepanski@atlassian.com>
|
|
112
146
|
*/
|
|
113
147
|
inlineConstOptimisationFix: false,
|
|
114
148
|
|
|
@@ -116,30 +150,23 @@ export const DEFAULT_FEATURE_FLAGS = {
|
|
|
116
150
|
* Improves/fixes HMR behaviour by:
|
|
117
151
|
* - Fixing HMR behaviour with lazy bundle edges
|
|
118
152
|
* - Moving the functionality of the react-refresh runtime into the react-refresh-wrap transformer
|
|
153
|
+
*
|
|
154
|
+
* @author Marcin Szczepanski <mszczepanski@atlassian.com>
|
|
119
155
|
*/
|
|
120
156
|
hmrImprovements: false,
|
|
121
157
|
|
|
122
|
-
/**
|
|
123
|
-
* Fixes a bug where imported objects that are accessed with non-static
|
|
124
|
-
* properties (e.g. `CONSTANTS['api_' + endpoint`]) would not be recognised as
|
|
125
|
-
* being used, and thus not included in the bundle.
|
|
126
|
-
*/
|
|
127
|
-
unusedComputedPropertyFix: process.env.ATLASPACK_BUILD_ENV === 'test',
|
|
128
|
-
|
|
129
|
-
/**
|
|
130
|
-
* Fixes an issue where star re-exports of empty files (usually occurring in compiled typescript libraries)
|
|
131
|
-
* could cause exports to undefined at runtime.
|
|
132
|
-
*/
|
|
133
|
-
emptyFileStarRexportFix: process.env.ATLASPACK_BUILD_ENV === 'test',
|
|
134
|
-
|
|
135
158
|
/**
|
|
136
159
|
* Enables the new packaging progress CLI experience
|
|
160
|
+
*
|
|
161
|
+
* @author Matt Jones <mjones4@atlassian.com>
|
|
137
162
|
*/
|
|
138
163
|
cliProgressReportingImprovements: false,
|
|
139
164
|
|
|
140
165
|
/**
|
|
141
166
|
* Adds support for `webpackChunkName` comments in dynamic imports.
|
|
142
167
|
* Imports with the same `webpackChunkName` will be bundled together.
|
|
168
|
+
*
|
|
169
|
+
* @author Ben Jervis <bjervis@atlassian.com>
|
|
143
170
|
*/
|
|
144
171
|
supportWebpackChunkName: process.env.ATLASPACK_BUILD_ENV === 'test',
|
|
145
172
|
|
|
@@ -147,35 +174,51 @@ export const DEFAULT_FEATURE_FLAGS = {
|
|
|
147
174
|
* Enable a change to the conditional bundling loader to use a fallback bundle loading if the expected scripts aren't found
|
|
148
175
|
*
|
|
149
176
|
* Split into two flags, to allow usage in the dev or prod packagers separately
|
|
177
|
+
*
|
|
178
|
+
* @author Jake Lane <jlane2@atlassian.com>
|
|
150
179
|
*/
|
|
151
180
|
condbDevFallbackDev: false,
|
|
181
|
+
/**
|
|
182
|
+
*
|
|
183
|
+
* @author Jake Lane <jlane2@atlassian.com>
|
|
184
|
+
*/
|
|
152
185
|
condbDevFallbackProd: false,
|
|
153
186
|
|
|
154
187
|
/**
|
|
155
188
|
* Enable the new incremental bundling versioning logic which determines whether
|
|
156
189
|
* a full bundling pass is required based on the AssetGraph's bundlingVersion.
|
|
190
|
+
*
|
|
191
|
+
* @author Pedro Tacla Yamada <pyamada@atlassian.com>
|
|
157
192
|
*/
|
|
158
193
|
incrementalBundlingVersioning: process.env.ATLASPACK_BUILD_ENV === 'test',
|
|
159
194
|
|
|
160
195
|
/**
|
|
161
196
|
* Remove redundant shared bundles that are no longer required after merging
|
|
162
197
|
* async bundles.
|
|
198
|
+
*
|
|
199
|
+
* @author Matt Jones <mjones4@atlassian.com>
|
|
163
200
|
*/
|
|
164
201
|
removeRedundantSharedBundles: process.env.ATLASPACK_BUILD_ENV === 'test',
|
|
165
202
|
|
|
166
203
|
/**
|
|
167
204
|
* When enabled, single file output bundles have a stable name
|
|
205
|
+
*
|
|
206
|
+
* @author Marcin Szczepanski <mszczepanski@atlassian.com>
|
|
168
207
|
*/
|
|
169
208
|
singleFileOutputStableName: process.env.ATLASPACK_BUILD_ENV === 'test',
|
|
170
209
|
|
|
171
210
|
/**
|
|
172
211
|
* Enable optimised prelude for the ScopeHoistingPackager.
|
|
212
|
+
*
|
|
213
|
+
* @author Jake Lane <jlane2@atlassian.com>
|
|
173
214
|
*/
|
|
174
215
|
useNewPrelude: false,
|
|
175
216
|
|
|
176
217
|
/**
|
|
177
218
|
* Enable a fix for applyScopeHoistingImprovement that allows assets to still
|
|
178
219
|
* be at the top level of the bundle.
|
|
220
|
+
*
|
|
221
|
+
* @author Ben Jervis <bjervis@atlassian.com>
|
|
179
222
|
*/
|
|
180
223
|
applyScopeHoistingImprovementV2: false,
|
|
181
224
|
|
|
@@ -183,23 +226,39 @@ export const DEFAULT_FEATURE_FLAGS = {
|
|
|
183
226
|
* When enabled, if both explicit entries and explicit targets are specified,
|
|
184
227
|
* the source properties of those targets are used as filters against the base entries.
|
|
185
228
|
* This allows building only specific entries for specific targets.
|
|
229
|
+
*
|
|
230
|
+
* @author Marcin Szczepanski <mszczepanski@atlassian.com>
|
|
186
231
|
*/
|
|
187
232
|
allowExplicitTargetEntries: process.env.ATLASPACK_BUILD_ENV === 'test',
|
|
188
233
|
/**
|
|
189
234
|
* When enabled, the packager will avoid using the binding helper for exports where possible.
|
|
235
|
+
*
|
|
236
|
+
* @author Jake Lane <jlane2@atlassian.com>
|
|
190
237
|
*/
|
|
191
238
|
exportsRebindingOptimisation: false,
|
|
192
239
|
|
|
193
240
|
/**
|
|
194
241
|
* When enabled, allows custom per-target "env" properties to be used in transformers.
|
|
242
|
+
*
|
|
243
|
+
* @author Marcin Szczepanski <mszczepanski@atlassian.com>
|
|
195
244
|
*/
|
|
196
245
|
customEnvInTargets: process.env.ATLASPACK_BUILD_ENV === 'test',
|
|
197
246
|
|
|
198
247
|
/**
|
|
199
248
|
* When enabled, ensures the `unstableSingleFileOutput` environment property is preserved during CSS transformation
|
|
249
|
+
*
|
|
250
|
+
* @author Marcin Szczepanski <mszczepanski@atlassian.com>
|
|
200
251
|
*/
|
|
201
252
|
preserveUnstableSingleFileOutputInCss:
|
|
202
253
|
process.env.ATLASPACK_BUILD_ENV === 'test',
|
|
254
|
+
|
|
255
|
+
/**
|
|
256
|
+
* When enabled, fixes handling of symbol locations when source maps contain
|
|
257
|
+
* project relative paths
|
|
258
|
+
*
|
|
259
|
+
* @author Matt Jones <mjones4@atlassian.com>
|
|
260
|
+
*/
|
|
261
|
+
symbolLocationFix: process.env.ATLASPACK_BUILD_ENV === 'test',
|
|
203
262
|
};
|
|
204
263
|
|
|
205
264
|
export type FeatureFlags = typeof DEFAULT_FEATURE_FLAGS;
|
package/tsconfig.json
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/typescript/lib/lib.es2023.d.ts","../../../node_modules/typescript/lib/lib.es2024.d.ts","../../../node_modules/typescript/lib/lib.esnext.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2023.array.d.ts","../../../node_modules/typescript/lib/lib.es2023.collection.d.ts","../../../node_modules/typescript/lib/lib.es2023.intl.d.ts","../../../node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts","../../../node_modules/typescript/lib/lib.es2024.collection.d.ts","../../../node_modules/typescript/lib/lib.es2024.object.d.ts","../../../node_modules/typescript/lib/lib.es2024.promise.d.ts","../../../node_modules/typescript/lib/lib.es2024.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2024.string.d.ts","../../../node_modules/typescript/lib/lib.esnext.array.d.ts","../../../node_modules/typescript/lib/lib.esnext.collection.d.ts","../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../node_modules/typescript/lib/lib.esnext.promise.d.ts","../../../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../../node_modules/typescript/lib/lib.esnext.iterator.d.ts","../../../node_modules/typescript/lib/lib.esnext.float16.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","./src/index.ts","../../../node_modules/@types/async/index.d.ts","../../../node_modules/@types/babel__generator/node_modules/@babel/types/lib/index.d.ts","../../../node_modules/@types/babel__generator/index.d.ts","../../../node_modules/@types/babel__core/node_modules/@babel/types/lib/index.d.ts","../../../node_modules/@types/babel__core/node_modules/@babel/parser/typings/babel-parser.d.ts","../../../node_modules/@types/babel__template/node_modules/@babel/parser/typings/babel-parser.d.ts","../../../node_modules/@types/babel__template/node_modules/@babel/types/lib/index.d.ts","../../../node_modules/@types/babel__template/index.d.ts","../../../node_modules/@types/babel__traverse/node_modules/@babel/types/lib/index.d.ts","../../../node_modules/@types/babel__traverse/index.d.ts","../../../node_modules/@types/babel__core/index.d.ts","../../../node_modules/@types/babel__helper-plugin-utils/index.d.ts","../../../node_modules/@types/braces/index.d.ts","../../../node_modules/@types/color-name/index.d.ts","../../../node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/@types/node/globals.typedarray.d.ts","../../../node_modules/@types/node/buffer.buffer.d.ts","../../../node_modules/buffer/index.d.ts","../../../node_modules/undici-types/utility.d.ts","../../../node_modules/undici-types/header.d.ts","../../../node_modules/undici-types/readable.d.ts","../../../node_modules/undici-types/fetch.d.ts","../../../node_modules/undici-types/formdata.d.ts","../../../node_modules/undici-types/connector.d.ts","../../../node_modules/undici-types/client.d.ts","../../../node_modules/undici-types/errors.d.ts","../../../node_modules/undici-types/dispatcher.d.ts","../../../node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/undici-types/global-origin.d.ts","../../../node_modules/undici-types/pool-stats.d.ts","../../../node_modules/undici-types/pool.d.ts","../../../node_modules/undici-types/handlers.d.ts","../../../node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/undici-types/h2c-client.d.ts","../../../node_modules/undici-types/agent.d.ts","../../../node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/undici-types/mock-call-history.d.ts","../../../node_modules/undici-types/mock-agent.d.ts","../../../node_modules/undici-types/mock-client.d.ts","../../../node_modules/undici-types/mock-pool.d.ts","../../../node_modules/undici-types/mock-errors.d.ts","../../../node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/undici-types/retry-handler.d.ts","../../../node_modules/undici-types/retry-agent.d.ts","../../../node_modules/undici-types/api.d.ts","../../../node_modules/undici-types/cache-interceptor.d.ts","../../../node_modules/undici-types/interceptors.d.ts","../../../node_modules/undici-types/util.d.ts","../../../node_modules/undici-types/cookies.d.ts","../../../node_modules/undici-types/patch.d.ts","../../../node_modules/undici-types/websocket.d.ts","../../../node_modules/undici-types/eventsource.d.ts","../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/undici-types/content-type.d.ts","../../../node_modules/undici-types/cache.d.ts","../../../node_modules/undici-types/index.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/dom-events.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/readline/promises.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/sea.d.ts","../../../node_modules/@types/node/sqlite.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/test.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/@types/connect/index.d.ts","../../../node_modules/@types/ejs/index.d.ts","../../../node_modules/@types/fb-watchman/index.d.ts","../../../node_modules/@types/fresh/index.d.ts","../../../node_modules/@types/jsonfile/index.d.ts","../../../node_modules/@types/jsonfile/utils.d.ts","../../../node_modules/@types/fs-extra/index.d.ts","../../../node_modules/@types/minimatch/index.d.ts","../../../node_modules/@types/glob/index.d.ts","../../../node_modules/@types/unist/index.d.ts","../../../node_modules/@types/hast/index.d.ts","../../../node_modules/@types/http-cache-semantics/index.d.ts","../../../node_modules/@types/http-proxy/index.d.ts","../../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../../node_modules/@types/istanbul-lib-report/index.d.ts","../../../node_modules/@types/istanbul-reports/index.d.ts","../../../node_modules/@types/js-yaml/index.d.ts","../../../node_modules/@types/json5/index.d.ts","../../../node_modules/@types/mdast/index.d.ts","../../../node_modules/@types/micromatch/index.d.ts","../../../node_modules/@types/minimist/index.d.ts","../../../node_modules/@types/mocha/index.d.ts","../../../node_modules/@types/node-forge/index.d.ts","../../../node_modules/@types/normalize-package-data/index.d.ts","../../../node_modules/@types/parse-json/index.d.ts","../../../node_modules/@types/parse5/index.d.ts","../../../node_modules/@types/prop-types/index.d.ts","../../../node_modules/@types/react/global.d.ts","../../../node_modules/csstype/index.d.ts","../../../node_modules/@types/scheduler/tracing.d.ts","../../../node_modules/@types/react/index.d.ts","../../../node_modules/@types/react-dom/index.d.ts","../../../node_modules/@types/scheduler/index.d.ts","../../../node_modules/@types/semver/functions/inc.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/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","../../../node_modules/@types/serve-handler/index.d.ts","../../../node_modules/@types/sinonjs__fake-timers/index.d.ts","../../../node_modules/@types/sinon/index.d.ts","../../../node_modules/@types/sorted-array-functions/index.d.ts","../../../node_modules/@types/stack-utils/index.d.ts","../../../node_modules/@types/vscode/index.d.ts","../../../node_modules/@types/yargs-parser/index.d.ts","../../../node_modules/@types/yargs/index.d.ts"],"fileIdsList":[[96,141],[81,82,84,87,89,96,141],[81,96,141],[90,96,141],[81,84,96,141],[96,141,156,191],[96,141,153,191],[96,141,154,191,196,197],[96,141,153,191,199],[96,141,201],[96,141,153,156,158,161,173,184,191],[96,141,205],[96,141,206],[96,141,154,184,191],[92,96,141],[96,141,191],[96,138,141],[96,140,141],[141],[96,141,146,176],[96,141,142,147,153,154,161,173,184],[96,141,142,143,153,161],[96,141,144,185],[96,141,145,146,154,162],[96,141,146,173,181],[96,141,147,149,153,161],[96,140,141,148],[96,141,149,150],[96,141,151,153],[96,140,141,153],[96,141,153,154,155,173,184],[96,141,153,154,155,168,173,176],[96,136,141],[96,136,141,149,153,156,161,173,184],[96,141,153,154,156,157,161,173,181,184],[96,141,156,158,173,181,184],[94,95,96,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190],[96,141,153,159],[96,141,160,184],[96,141,149,153,161,173],[96,141,162],[96,141,163],[96,140,141,164],[96,138,139,140,141,142,143,144,145,146,147,148,149,150,151,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190],[96,141,166],[96,141,167],[96,141,153,168,169],[96,141,168,170,185,187],[96,141,153,173,174,176],[96,141,175,176],[96,141,173,174],[96,141,176],[96,141,177],[96,138,141,173,178],[96,141,153,179,180],[96,141,179,180],[96,141,146,161,173,181],[96,141,182],[96,141,161,183],[96,141,156,167,184],[96,141,146,185],[96,141,173,186],[96,141,160,187],[96,141,188],[96,141,153,155,164,173,176,184,186,187,189],[96,141,173,190],[96,141,222],[96,141,218,219,220,221],[96,141,226,264],[96,141,226,249,264],[96,141,225,264],[96,141,264],[96,141,226],[96,141,226,250,264],[96,141,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263],[96,141,250,264],[96,141,154,156,191],[96,141,266],[96,141,271],[96,106,110,141,184],[96,106,141,173,184],[96,141,173],[96,101,141],[96,103,106,141,184],[96,141,161,181],[96,101,141,191],[96,103,106,141,161,184],[96,98,99,100,102,105,141,153,173,184],[96,106,114,141],[96,99,104,141],[96,106,130,131,141],[96,99,102,106,141,176,184,191],[96,106,141],[96,98,141],[96,101,102,103,104,105,106,107,108,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,131,132,133,134,135,141],[96,106,123,126,141,149],[96,106,114,115,116,141],[96,104,106,115,117,141],[96,105,141],[96,99,101,106,141],[96,106,110,115,117,141],[96,110,141],[96,104,106,109,141,184],[96,99,103,106,114,141],[96,106,123,141],[96,101,106,130,141,176,189,191]],"fileInfos":[{"version":"69684132aeb9b5642cbcd9e22dff7818ff0ee1aa831728af0ecf97d3364d5546","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"8fd575e12870e9944c7e1d62e1f5a73fcf23dd8d3a321f2a2c74c20d022283fe","impliedFormat":1},{"version":"8bf8b5e44e3c9c36f98e1007e8b7018c0f38d8adc07aecef42f5200114547c70","impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"b5ce7a470bc3628408429040c4e3a53a27755022a32fd05e2cb694e7015386c7","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"df83c2a6c73228b625b0beb6669c7ee2a09c914637e2d35170723ad49c0f5cd4","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"87dc0f382502f5bbce5129bdc0aea21e19a3abbc19259e0b43ae038a9fc4e326","affectsGlobalScope":true,"impliedFormat":1},{"version":"b1cb28af0c891c8c96b2d6b7be76bd394fddcfdb4709a20ba05a7c1605eea0f9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true,"impliedFormat":1},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ece9f17b3866cc077099c73f4983bddbcb1dc7ddb943227f1ec070f529dedd1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","affectsGlobalScope":true,"impliedFormat":1},{"version":"1c9319a09485199c1f7b0498f2988d6d2249793ef67edda49d1e584746be9032","affectsGlobalScope":true,"impliedFormat":1},{"version":"e3a2a0cee0f03ffdde24d89660eba2685bfbdeae955a6c67e8c4c9fd28928eeb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"60037901da1a425516449b9a20073aa03386cce92f7a1fd902d7602be3a7c2e9","affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true,"impliedFormat":1},{"version":"22adec94ef7047a6c9d1af3cb96be87a335908bf9ef386ae9fd50eeb37f44c47","affectsGlobalScope":true,"impliedFormat":1},{"version":"4245fee526a7d1754529d19227ecbf3be066ff79ebb6a380d78e41648f2f224d","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"17857559c99df5c8820217662119e4be69c3e538b7596443543e00fa3c16855b","signature":"62de6d52bf87279d06e6b30d4ac58168f35e85e9d6b9c382faba64190f13565d","impliedFormat":1},{"version":"0d0fdd1c2584f45c60721484924e43736841c8cd57ca353599c1fa4a2972f264","impliedFormat":1},{"version":"7983487d0fbefb9b6ccc94390e8c826328d87e21cd4a62ea5b4c6b8f99f32550","impliedFormat":1},{"version":"2c8e55457aaf4902941dfdba4061935922e8ee6e120539c9801cd7b400fae050","impliedFormat":1},{"version":"7983487d0fbefb9b6ccc94390e8c826328d87e21cd4a62ea5b4c6b8f99f32550","impliedFormat":1},{"version":"a7c8d34006fa93c600dc791fc4fc099fe67f28377b23626f4467675146be080e","impliedFormat":1},{"version":"a7c8d34006fa93c600dc791fc4fc099fe67f28377b23626f4467675146be080e","impliedFormat":1},{"version":"7983487d0fbefb9b6ccc94390e8c826328d87e21cd4a62ea5b4c6b8f99f32550","impliedFormat":1},{"version":"670a76db379b27c8ff42f1ba927828a22862e2ab0b0908e38b671f0e912cc5ed","impliedFormat":1},{"version":"7983487d0fbefb9b6ccc94390e8c826328d87e21cd4a62ea5b4c6b8f99f32550","impliedFormat":1},{"version":"9e0cf651e8e2c5b9bebbabdff2f7c6f8cedd91b1d9afcc0a854cdff053a88f1b","impliedFormat":1},{"version":"069bebfee29864e3955378107e243508b163e77ab10de6a5ee03ae06939f0bb9","impliedFormat":1},{"version":"5ab6d179a1c49dacd5106af2173d141983d631143a07c65e8e4b9551d688b215","impliedFormat":1},{"version":"2b91a6a00be41e4dea6d25220ef9d4d1c843872d1ad6b9f0597c720d2d45c256","impliedFormat":1},{"version":"f0cb4b3ab88193e3e51e9e2622e4c375955003f1f81239d72c5b7a95415dad3e","impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"c0671b50bb99cc7ad46e9c68fa0e7f15ba4bc898b59c31a17ea4611fab5095da","affectsGlobalScope":true,"impliedFormat":1},{"version":"d802f0e6b5188646d307f070d83512e8eb94651858de8a82d1e47f60fb6da4e2","affectsGlobalScope":true,"impliedFormat":1},{"version":"4967529644e391115ca5592184d4b63980569adf60ee685f968fd59ab1557188","impliedFormat":1},{"version":"cdcf9ea426ad970f96ac930cd176d5c69c6c24eebd9fc580e1572d6c6a88f62c","impliedFormat":1},{"version":"23cd712e2ce083d68afe69224587438e5914b457b8acf87073c22494d706a3d0","impliedFormat":1},{"version":"487b694c3de27ddf4ad107d4007ad304d29effccf9800c8ae23c2093638d906a","impliedFormat":1},{"version":"e525f9e67f5ddba7b5548430211cae2479070b70ef1fd93550c96c10529457bd","impliedFormat":1},{"version":"ccf4552357ce3c159ef75f0f0114e80401702228f1898bdc9402214c9499e8c0","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"17fe9131bec653b07b0a1a8b99a830216e3e43fe0ea2605be318dc31777c8bbf","impliedFormat":1},{"version":"3c8e93af4d6ce21eb4c8d005ad6dc02e7b5e6781f429d52a35290210f495a674","impliedFormat":1},{"version":"2c9875466123715464539bfd69bcaccb8ff6f3e217809428e0d7bd6323416d01","impliedFormat":1},{"version":"ea6bc8de8b59f90a7a3960005fd01988f98fd0784e14bc6922dde2e93305ec7d","impliedFormat":1},{"version":"36107995674b29284a115e21a0618c4c2751b32a8766dd4cb3ba740308b16d59","impliedFormat":1},{"version":"914a0ae30d96d71915fc519ccb4efbf2b62c0ddfb3a3fc6129151076bc01dc60","impliedFormat":1},{"version":"2472ef4c28971272a897fdb85d4155df022e1f5d9a474a526b8fc2ef598af94e","impliedFormat":1},{"version":"6c8e442ba33b07892169a14f7757321e49ab0f1032d676d321a1fdab8a67d40c","impliedFormat":1},{"version":"b41767d372275c154c7ea6c9d5449d9a741b8ce080f640155cc88ba1763e35b3","impliedFormat":1},{"version":"1cd673d367293fc5cb31cd7bf03d598eb368e4f31f39cf2b908abbaf120ab85a","impliedFormat":1},{"version":"19851a6596401ca52d42117108d35e87230fc21593df5c4d3da7108526b6111c","impliedFormat":1},{"version":"3825bf209f1662dfd039010a27747b73d0ef379f79970b1d05601ec8e8a4249f","impliedFormat":1},{"version":"0b6e25234b4eec6ed96ab138d96eb70b135690d7dd01f3dd8a8ab291c35a683a","impliedFormat":1},{"version":"40bfc70953be2617dc71979c14e9e99c5e65c940a4f1c9759ddb90b0f8ff6b1a","impliedFormat":1},{"version":"da52342062e70c77213e45107921100ba9f9b3a30dd019444cf349e5fb3470c4","impliedFormat":1},{"version":"e9ace91946385d29192766bf783b8460c7dbcbfc63284aa3c9cae6de5155c8bc","impliedFormat":1},{"version":"40b463c6766ca1b689bfcc46d26b5e295954f32ad43e37ee6953c0a677e4ae2b","impliedFormat":1},{"version":"561c60d8bfe0fec2c08827d09ff039eca0c1f9b50ef231025e5a549655ed0298","impliedFormat":1},{"version":"1e30c045732e7db8f7a82cf90b516ebe693d2f499ce2250a977ec0d12e44a529","impliedFormat":1},{"version":"84b736594d8760f43400202859cda55607663090a43445a078963031d47e25e7","impliedFormat":1},{"version":"499e5b055a5aba1e1998f7311a6c441a369831c70905cc565ceac93c28083d53","impliedFormat":1},{"version":"54c3e2371e3d016469ad959697fd257e5621e16296fa67082c2575d0bf8eced0","impliedFormat":1},{"version":"beb8233b2c220cfa0feea31fbe9218d89fa02faa81ef744be8dce5acb89bb1fd","impliedFormat":1},{"version":"78b29846349d4dfdd88bd6650cc5d2baaa67f2e89dc8a80c8e26ef7995386583","impliedFormat":1},{"version":"5d0375ca7310efb77e3ef18d068d53784faf62705e0ad04569597ae0e755c401","impliedFormat":1},{"version":"59af37caec41ecf7b2e76059c9672a49e682c1a2aa6f9d7dc78878f53aa284d6","impliedFormat":1},{"version":"addf417b9eb3f938fddf8d81e96393a165e4be0d4a8b6402292f9c634b1cb00d","impliedFormat":1},{"version":"e38d4fdf79e1eadd92ed7844c331dbaa40f29f21541cfee4e1acff4db09cda33","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"7c10a32ae6f3962672e6869ee2c794e8055d8225ef35c91c0228e354b4e5d2d3","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"99f569b42ea7e7c5fe404b2848c0893f3e1a56e0547c1cd0f74d5dbb9a9de27e","impliedFormat":1},{"version":"f4b4faedc57701ae727d78ba4a83e466a6e3bdcbe40efbf913b17e860642897c","affectsGlobalScope":true,"impliedFormat":1},{"version":"bbcfd9cd76d92c3ee70475270156755346c9086391e1b9cb643d072e0cf576b8","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"72c1f5e0a28e473026074817561d1bc9647909cf253c8d56c41d1df8d95b85f7","impliedFormat":1},{"version":"4a48915fb0c07aa96d315dcb98231aa135151fb961cd3c6093cf29d64304c5d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"938f94db8400d0b479626b9006245a833d50ce8337f391085fad4af540279567","impliedFormat":1},{"version":"c4e8e8031808b158cfb5ac5c4b38d4a26659aec4b57b6a7e2ba0a141439c208c","impliedFormat":1},{"version":"2c91d8366ff2506296191c26fd97cc1990bab3ee22576275d28b654a21261a44","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"12fb9c13f24845000d7bd9660d11587e27ef967cbd64bd9df19ae3e6aa9b52d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"289e9894a4668c61b5ffed09e196c1f0c2f87ca81efcaebdf6357cfb198dac14","impliedFormat":1},{"version":"25a1105595236f09f5bce42398be9f9ededc8d538c258579ab662d509aa3b98e","impliedFormat":1},{"version":"4ea4cb9f755b97e72fd2f42e2d9786baf9184a8625085a24dc7ea96734d5986b","impliedFormat":1},{"version":"bd1b3b48920e1bd6d52133f95153a5d94aa1b3555e5f30b2154336e52abd29bd","impliedFormat":1},{"version":"ad1cc0ed328f3f708771272021be61ab146b32ecf2b78f3224959ff1e2cd2a5c","impliedFormat":1},{"version":"71450bbc2d82821d24ca05699a533e72758964e9852062c53b30f31c36978ab8","affectsGlobalScope":true,"impliedFormat":1},{"version":"62f572306e0b173cc5dfc4c583471151f16ef3779cf27ab96922c92ec82a3bc8","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f32444438ecb1fa4519f6ec3977d69ce0e3acfa18b803e5cd725c204501f350","impliedFormat":1},{"version":"0ab3c844f1eb5a1d94c90edc346a25eb9d3943af7a7812f061bf2d627d8afac0","impliedFormat":1},{"version":"e8c431ccd0dd211303eeeaef6329d70d1ba8d4f6fa23b9c1a625cebd29226c1e","impliedFormat":1},{"version":"161f09445a8b4ba07f62ae54b27054e4234e7957062e34c6362300726dabd315","impliedFormat":1},{"version":"77fced47f495f4ff29bb49c52c605c5e73cd9b47d50080133783032769a9d8a6","impliedFormat":1},{"version":"e6057f9e7b0c64d4527afeeada89f313f96a53291705f069a9193c18880578cb","impliedFormat":1},{"version":"34ecb9596317c44dab586118fb62c1565d3dad98d201cd77f3e6b0dde453339c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0f5cda0282e1d18198e2887387eb2f026372ebc4e11c4e4516fef8a19ee4d514","impliedFormat":1},{"version":"e99b0e71f07128fc32583e88ccd509a1aaa9524c290efb2f48c22f9bf8ba83b1","impliedFormat":1},{"version":"76957a6d92b94b9e2852cf527fea32ad2dc0ef50f67fe2b14bd027c9ceef2d86","impliedFormat":1},{"version":"237581f5ec4620a17e791d3bb79bad3af01e27a274dbee875ac9b0721a4fe97d","affectsGlobalScope":true,"impliedFormat":1},{"version":"a8a99a5e6ed33c4a951b67cc1fd5b64fd6ad719f5747845c165ca12f6c21ba16","affectsGlobalScope":true,"impliedFormat":1},{"version":"a58a15da4c5ba3df60c910a043281256fa52d36a0fcdef9b9100c646282e88dd","impliedFormat":1},{"version":"b36beffbf8acdc3ebc58c8bb4b75574b31a2169869c70fc03f82895b93950a12","impliedFormat":1},{"version":"de263f0089aefbfd73c89562fb7254a7468b1f33b61839aafc3f035d60766cb4","impliedFormat":1},{"version":"70b57b5529051497e9f6482b76d91c0dcbb103d9ead8a0549f5bab8f65e5d031","impliedFormat":1},{"version":"e6d81b1f7ab11dc1b1ad7ad29fcfad6904419b36baf55ed5e80df48d56ac3aff","impliedFormat":1},{"version":"1013eb2e2547ad8c100aca52ef9df8c3f209edee32bb387121bb3227f7c00088","impliedFormat":1},{"version":"b6b8e3736383a1d27e2592c484a940eeb37ec4808ba9e74dd57679b2453b5865","impliedFormat":1},{"version":"d6f36b683c59ac0d68a1d5ee906e578e2f5e9a285bca80ff95ce61cdc9ddcdeb","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"125d792ec6c0c0f657d758055c494301cc5fdb327d9d9d5960b3f129aff76093","impliedFormat":1},{"version":"12aad38de6f0594dc21efa78a2c1f67bf6a7ef5a389e05417fe9945284450908","affectsGlobalScope":true,"impliedFormat":1},{"version":"ea713aa14a670b1ea0fbaaca4fd204e645f71ca7653a834a8ec07ee889c45de6","impliedFormat":1},{"version":"b338a6e6c1d456e65a6ea78da283e3077fe8edf7202ae10490abbba5b952b05e","impliedFormat":1},{"version":"2918b7c516051c30186a1055ebcdb3580522be7190f8a2fff4100ea714c7c366","affectsGlobalScope":true,"impliedFormat":1},{"version":"ae86f30d5d10e4f75ce8dcb6e1bd3a12ecec3d071a21e8f462c5c85c678efb41","impliedFormat":1},{"version":"982efeb2573605d4e6d5df4dc7e40846bda8b9e678e058fc99522ab6165c479e","impliedFormat":1},{"version":"e03460fe72b259f6d25ad029f085e4bedc3f90477da4401d8fbc1efa9793230e","impliedFormat":1},{"version":"4286a3a6619514fca656089aee160bb6f2e77f4dd53dc5a96b26a0b4fc778055","impliedFormat":1},{"version":"d67fc92a91171632fc74f413ce42ff1aa7fbcc5a85b127101f7ec446d2039a1f","affectsGlobalScope":true,"impliedFormat":1},{"version":"d40e4631100dbc067268bce96b07d7aff7f28a541b1bfb7ef791c64a696b3d33","affectsGlobalScope":true,"impliedFormat":1},{"version":"784490137935e1e38c49b9289110e74a1622baf8a8907888dcbe9e476d7c5e44","impliedFormat":1},{"version":"42180b657831d1b8fead051698618b31da623fb71ff37f002cb9d932cfa775f1","impliedFormat":1},{"version":"4f98d6fb4fe7cbeaa04635c6eaa119d966285d4d39f0eb55b2654187b0b27446","impliedFormat":1},{"version":"e4c653466d0497d87fa9ffd00e59a95f33bc1c1722c3f5c84dab2e950c18da70","affectsGlobalScope":true,"impliedFormat":1},{"version":"e6dcc3b933e864e91d4bea94274ad69854d5d2a1311a4b0e20408a57af19e95d","impliedFormat":1},{"version":"a51f786b9f3c297668f8f322a6c58f85d84948ef69ade32069d5d63ec917221c","impliedFormat":1},{"version":"104c67f0da1bdf0d94865419247e20eded83ce7f9911a1aa75fc675c077ca66e","impliedFormat":1},{"version":"f2a60d253f7206372203b736144906bf135762100a2b3d1b415776ebf6575d07","impliedFormat":1},{"version":"475d75b88736de6ea8a812dff16a14aab6b366816c3d85000cd675f1e547a3f6","impliedFormat":1},{"version":"8a4dadb6fad24375ca0c9a94261fec52e876603a2b6c9e1ee932c372baeb438d","impliedFormat":1},{"version":"211440ce81e87b3491cdf07155881344b0a61566df6e749acff0be7e8b9d1a07","impliedFormat":1},{"version":"5d9a0b6e6be8dbb259f64037bce02f34692e8c1519f5cd5d467d7fa4490dced4","impliedFormat":1},{"version":"880da0e0f3ebca42f9bd1bc2d3e5e7df33f2619d85f18ee0ed4bd16d1800bc32","impliedFormat":1},{"version":"8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","impliedFormat":1},{"version":"393137c76bd922ba70a2f8bf1ade4f59a16171a02fb25918c168d48875b0cfb0","impliedFormat":1},{"version":"1320ee42b30487cceb6da9f230354fc34826111f76bf12f0ad76c717c12625b0","impliedFormat":1},{"version":"b6e83cdeca61289e5ffd770e55ed035babdffadd87d1ffa42b03e9fe8411333f","impliedFormat":1},{"version":"d7dbe0ad36bdca8a6ecf143422a48e72cc8927bab7b23a1a2485c2f78a7022c6","impliedFormat":1},{"version":"e4b4326b61261bf5ffd6de8b4825f00eb11ebb89a51bd92663dd6e660abf4210","impliedFormat":1},{"version":"035a5df183489c2e22f3cf59fc1ed2b043d27f357eecc0eb8d8e840059d44245","impliedFormat":1},{"version":"a4809f4d92317535e6b22b01019437030077a76fec1d93b9881c9ed4738fcc54","impliedFormat":1},{"version":"5f53fa0bd22096d2a78533f94e02c899143b8f0f9891a46965294ee8b91a9434","impliedFormat":1},{"version":"97106d5b3a6c345498adc0868c24612ecd615b5ee9c4a3da20d199e80a1a6201","impliedFormat":1},{"version":"96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","impliedFormat":1},{"version":"9a6d65d77455efaaaeff945bea30c38b8fe0922b807ba45cd23792392f1bfe76","impliedFormat":1},{"version":"33a0782502805f6dac67362b4290250e29755139a9c0d93a42e9da3a6e282e85","impliedFormat":1},{"version":"e437d83044ba17246a861aa9691aa14223ff4a9d6f338ab1269c41c758586a88","impliedFormat":1},{"version":"29f72ec1289ae3aeda78bf14b38086d3d803262ac13904b400422941a26a3636","affectsGlobalScope":true,"impliedFormat":1},{"version":"a39f2a304ccc39e70914e9db08f971d23b862b6f0e34753fad86b895fe566533","impliedFormat":1},{"version":"c9ad058b2cc9ce6dc2ed92960d6d009e8c04bef46d3f5312283debca6869f613","impliedFormat":1},{"version":"2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","impliedFormat":1},{"version":"c555dd691dd05955e99cd93dd99c685a65e5287813ccb5e6bfde951183248e26","impliedFormat":1},{"version":"9ed09d4538e25fc79cefc5e7b5bfbae0464f06d2984f19da009f85d13656c211","impliedFormat":1},{"version":"3b75495c77f85fef76a898491b2eff2e4eb80a37d798a8ad8b39a578c2303859","affectsGlobalScope":true,"impliedFormat":1},{"version":"8a8eb4ebffd85e589a1cc7c178e291626c359543403d58c9cd22b81fab5b1fb9","impliedFormat":1},{"version":"b1bf87add0ccfb88472cd4c6013853d823a7efb791c10bb7a11679526be91eda","impliedFormat":1},{"version":"7e6f46ed7dbebb2b1a5bdfac5a41582dfd266217a30387d9cbdeb2af84a39c52","affectsGlobalScope":true,"impliedFormat":1},{"version":"8a02143a323c05741ec49533d54c4928dbf6618d297d855f12114304c3b69846","impliedFormat":1},{"version":"4ef960df4f672e93b479f88211ed8b5cfa8a598b97aafa3396cacdc3341e3504","impliedFormat":1},{"version":"ce6a3f09b8db73a7e9701aca91a04b4fabaf77436dd35b24482f9ee816016b17","impliedFormat":1},{"version":"20e086e5b64fdd52396de67761cc0e94693494deadb731264aac122adf08de3f","impliedFormat":1},{"version":"6e78f75403b3ec65efb41c70d392aeda94360f11cedc9fb2c039c9ea23b30962","impliedFormat":1},{"version":"c863198dae89420f3c552b5a03da6ed6d0acfa3807a64772b895db624b0de707","impliedFormat":1},{"version":"8b03a5e327d7db67112ebbc93b4f744133eda2c1743dbb0a990c61a8007823ef","impliedFormat":1},{"version":"42fad1f540271e35ca37cecda12c4ce2eef27f0f5cf0f8dd761d723c744d3159","impliedFormat":1},{"version":"ff3743a5de32bee10906aff63d1de726f6a7fd6ee2da4b8229054dfa69de2c34","impliedFormat":1},{"version":"83acd370f7f84f203e71ebba33ba61b7f1291ca027d7f9a662c6307d74e4ac22","impliedFormat":1},{"version":"1445cec898f90bdd18b2949b9590b3c012f5b7e1804e6e329fb0fe053946d5ec","impliedFormat":1},{"version":"0e5318ec2275d8da858b541920d9306650ae6ac8012f0e872fe66eb50321a669","impliedFormat":1},{"version":"cf530297c3fb3a92ec9591dd4fa229d58b5981e45fe6702a0bd2bea53a5e59be","impliedFormat":1},{"version":"c1f6f7d08d42148ddfe164d36d7aba91f467dbcb3caa715966ff95f55048b3a4","impliedFormat":1},{"version":"eefd2bbc8edb14c3bd1246794e5c070a80f9b8f3730bd42efb80df3cc50b9039","impliedFormat":1},{"version":"0c1ee27b8f6a00097c2d6d91a21ee4d096ab52c1e28350f6362542b55380059a","impliedFormat":1},{"version":"7677d5b0db9e020d3017720f853ba18f415219fb3a9597343b1b1012cfd699f7","impliedFormat":1},{"version":"bc1c6bc119c1784b1a2be6d9c47addec0d83ef0d52c8fbe1f14a51b4dfffc675","impliedFormat":1},{"version":"52cf2ce99c2a23de70225e252e9822a22b4e0adb82643ab0b710858810e00bf1","impliedFormat":1},{"version":"770625067bb27a20b9826255a8d47b6b5b0a2d3dfcbd21f89904c731f671ba77","impliedFormat":1},{"version":"d1ed6765f4d7906a05968fb5cd6d1db8afa14dbe512a4884e8ea5c0f5e142c80","impliedFormat":1},{"version":"799c0f1b07c092626cf1efd71d459997635911bb5f7fc1196efe449bba87e965","impliedFormat":1},{"version":"2a184e4462b9914a30b1b5c41cf80c6d3428f17b20d3afb711fff3f0644001fd","impliedFormat":1},{"version":"9eabde32a3aa5d80de34af2c2206cdc3ee094c6504a8d0c2d6d20c7c179503cc","impliedFormat":1},{"version":"397c8051b6cfcb48aa22656f0faca2553c5f56187262135162ee79d2b2f6c966","impliedFormat":1},{"version":"a8ead142e0c87dcd5dc130eba1f8eeed506b08952d905c47621dc2f583b1bff9","impliedFormat":1},{"version":"a02f10ea5f73130efca046429254a4e3c06b5475baecc8f7b99a0014731be8b3","impliedFormat":1},{"version":"c2576a4083232b0e2d9bd06875dd43d371dee2e090325a9eac0133fd5650c1cb","impliedFormat":1},{"version":"4c9a0564bb317349de6a24eb4efea8bb79898fa72ad63a1809165f5bd42970dd","impliedFormat":1},{"version":"f40ac11d8859092d20f953aae14ba967282c3bb056431a37fced1866ec7a2681","impliedFormat":1},{"version":"cc11e9e79d4746cc59e0e17473a59d6f104692fd0eeea1bdb2e206eabed83b03","impliedFormat":1},{"version":"b444a410d34fb5e98aa5ee2b381362044f4884652e8bc8a11c8fe14bbd85518e","impliedFormat":1},{"version":"c35808c1f5e16d2c571aa65067e3cb95afeff843b259ecfa2fc107a9519b5392","impliedFormat":1},{"version":"14d5dc055143e941c8743c6a21fa459f961cbc3deedf1bfe47b11587ca4b3ef5","impliedFormat":1},{"version":"a3ad4e1fc542751005267d50a6298e6765928c0c3a8dce1572f2ba6ca518661c","impliedFormat":1},{"version":"f237e7c97a3a89f4591afd49ecb3bd8d14f51a1c4adc8fcae3430febedff5eb6","impliedFormat":1},{"version":"3ffdfbec93b7aed71082af62b8c3e0cc71261cc68d796665faa1e91604fbae8f","impliedFormat":1},{"version":"662201f943ed45b1ad600d03a90dffe20841e725203ced8b708c91fcd7f9379a","impliedFormat":1},{"version":"c9ef74c64ed051ea5b958621e7fb853fe3b56e8787c1587aefc6ea988b3c7e79","impliedFormat":1},{"version":"2462ccfac5f3375794b861abaa81da380f1bbd9401de59ffa43119a0b644253d","impliedFormat":1},{"version":"34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","impliedFormat":1},{"version":"a56fe175741cc8841835eb72e61fa5a34adcbc249ede0e3494c229f0750f6b85","impliedFormat":1},{"version":"8bc01182456052de4a5c62a392898b158237072a1419bb0d9558b735db3e07b5","impliedFormat":1},{"version":"7d2a0ba1297be385a89b5515b88cd31b4a1eeef5236f710166dc1b36b1741e1b","impliedFormat":1},{"version":"6175dda01fddf3684d6261d97d169d86b024eceb2cc20041936c068789230f8f","impliedFormat":1},{"version":"cebe1e06b45147ae23e72ffc65f766d94587324c9715b7ad378db99dc2c2e929","impliedFormat":1},{"version":"ab82804a14454734010dcdcd43f564ff7b0389bee4c5692eec76ff5b30d4cf66","impliedFormat":1},{"version":"75c579e3d75b075f15c5eb774fc0d8ea08b12f6b1f97b910532376548f9098a0","affectsGlobalScope":true,"impliedFormat":1},{"version":"bae8d023ef6b23df7da26f51cea44321f95817c190342a36882e93b80d07a960","impliedFormat":1},{"version":"26a770cec4bd2e7dbba95c6e536390fffe83c6268b78974a93727903b515c4e7","impliedFormat":1}],"root":[79],"options":{"composite":true,"declaration":true,"declarationDir":"./lib/types","downlevelIteration":true,"erasableSyntaxOnly":true,"esModuleInterop":true,"module":100,"noImplicitAny":true,"outDir":"./dist","rootDir":"./src","skipLibCheck":true,"strict":true,"target":7},"referencedMap":[[80,1],[90,2],[84,3],[83,1],[82,3],[81,1],[91,4],[87,5],[85,3],[86,1],[89,3],[88,1],[92,1],[93,1],[192,6],[193,1],[194,7],[195,1],[198,8],[200,9],[202,10],[203,1],[204,11],[205,1],[206,12],[207,13],[208,1],[209,1],[196,14],[197,1],[210,10],[211,15],[199,1],[212,1],[213,1],[214,16],[138,17],[139,17],[140,18],[96,19],[141,20],[142,21],[143,22],[94,1],[144,23],[145,24],[146,25],[147,26],[148,27],[149,28],[150,28],[152,1],[151,29],[153,30],[154,31],[155,32],[137,33],[95,1],[156,34],[157,35],[158,36],[191,37],[159,38],[160,39],[161,40],[162,41],[163,42],[164,43],[165,44],[166,45],[167,46],[168,47],[169,47],[170,48],[171,1],[172,1],[173,49],[175,50],[174,51],[176,52],[177,53],[178,54],[179,55],[180,56],[181,57],[182,58],[183,59],[184,60],[185,61],[186,62],[187,63],[188,64],[189,65],[190,66],[215,1],[216,1],[217,1],[218,1],[223,67],[219,1],[222,68],[224,1],[221,1],[249,69],[250,70],[226,71],[229,72],[247,69],[248,69],[238,69],[237,73],[235,69],[230,69],[243,69],[241,69],[245,69],[225,69],[242,69],[246,69],[231,69],[232,69],[244,69],[227,69],[233,69],[234,69],[236,69],[240,69],[251,74],[239,69],[228,69],[264,75],[263,1],[258,74],[260,76],[259,74],[252,74],[253,74],[255,74],[257,74],[261,76],[262,76],[254,76],[256,76],[265,77],[267,78],[266,1],[268,1],[269,1],[201,1],[270,1],[271,1],[272,79],[97,1],[220,1],[77,1],[78,1],[14,1],[13,1],[2,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[22,1],[3,1],[23,1],[24,1],[4,1],[25,1],[29,1],[26,1],[27,1],[28,1],[30,1],[31,1],[32,1],[5,1],[33,1],[34,1],[35,1],[36,1],[6,1],[40,1],[37,1],[38,1],[39,1],[41,1],[7,1],[42,1],[47,1],[48,1],[43,1],[44,1],[45,1],[46,1],[8,1],[52,1],[49,1],[50,1],[51,1],[53,1],[9,1],[54,1],[55,1],[56,1],[58,1],[57,1],[59,1],[60,1],[10,1],[61,1],[62,1],[63,1],[11,1],[64,1],[65,1],[66,1],[67,1],[68,1],[1,1],[69,1],[70,1],[12,1],[74,1],[72,1],[76,1],[71,1],[75,1],[73,1],[114,80],[125,81],[112,80],[126,82],[135,83],[104,84],[103,85],[134,16],[129,86],[133,87],[106,88],[122,89],[105,90],[132,91],[101,92],[102,86],[107,93],[108,1],[113,84],[111,93],[99,94],[136,95],[127,96],[117,97],[116,93],[118,98],[120,99],[115,100],[119,101],[130,16],[109,102],[110,103],[121,104],[100,82],[124,105],[123,93],[128,1],[98,1],[131,106],[79,1]],"latestChangedDtsFile":"./lib/types/index.d.ts","version":"5.8.3"}
|