@embroider/vite 1.1.6 → 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/src/ember.d.ts +11 -1
- package/dist/src/ember.js +83 -10
- package/dist/src/ember.js.map +1 -1
- package/dist/src/request.d.ts +8 -1
- package/dist/src/request.js +69 -9
- package/dist/src/request.js.map +1 -1
- package/dist/src/resolver.d.ts +3 -1
- package/dist/src/resolver.js +10 -3
- package/dist/src/resolver.js.map +1 -1
- package/dist/src/scripts.js +1 -0
- package/dist/src/scripts.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +8 -7
package/dist/src/ember.d.ts
CHANGED
|
@@ -1,2 +1,12 @@
|
|
|
1
|
+
import { type Plugin } from 'vite';
|
|
1
2
|
export declare let extensions: string[];
|
|
2
|
-
export declare
|
|
3
|
+
export declare const defaultRolldownSharedPlugins: string[];
|
|
4
|
+
export declare function ember(params?: {
|
|
5
|
+
/**
|
|
6
|
+
* List of names of rollup plugins that should be taken from your regular Vite
|
|
7
|
+
* config and also applied when Rolldown is bundling dependencies for
|
|
8
|
+
* development. The default list of names is importable as
|
|
9
|
+
* `defaultRolldownSharedPlugins`.
|
|
10
|
+
*/
|
|
11
|
+
rolldownSharedPlugins?: string[];
|
|
12
|
+
}): Plugin<any>[];
|
package/dist/src/ember.js
CHANGED
|
@@ -2,13 +2,20 @@ import { templateTag } from './template-tag.js';
|
|
|
2
2
|
import { resolver } from './resolver.js';
|
|
3
3
|
import { esBuildResolver } from './esbuild-resolver.js';
|
|
4
4
|
export let extensions = ['.mjs', '.gjs', '.js', '.mts', '.gts', '.ts', '.hbs', '.hbs.js', '.json'];
|
|
5
|
-
export
|
|
5
|
+
export const defaultRolldownSharedPlugins = [
|
|
6
|
+
'rollup-hbs-plugin',
|
|
7
|
+
'embroider-template-tag',
|
|
8
|
+
'embroider-resolver',
|
|
9
|
+
'babel',
|
|
10
|
+
];
|
|
11
|
+
export function ember(params) {
|
|
6
12
|
return [
|
|
7
13
|
templateTag(),
|
|
8
14
|
resolver(),
|
|
9
15
|
{
|
|
10
16
|
name: 'vite-plugin-ember-config',
|
|
11
17
|
async config(config, env) {
|
|
18
|
+
var _a, _b, _c;
|
|
12
19
|
// Default vite resolve extensions, which the user can completely
|
|
13
20
|
// override if they want
|
|
14
21
|
if (!config.resolve) {
|
|
@@ -37,15 +44,40 @@ export function ember() {
|
|
|
37
44
|
else {
|
|
38
45
|
config.optimizeDeps.exclude = ['@embroider/macros'];
|
|
39
46
|
}
|
|
40
|
-
//
|
|
41
|
-
if (
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
47
|
+
// @ts-expect-error the types aren't finished yet it would seem
|
|
48
|
+
if ((_a = this === null || this === void 0 ? void 0 : this.meta) === null || _a === void 0 ? void 0 : _a.rolldownVersion) {
|
|
49
|
+
// configure our embroider resolver for optimize deps
|
|
50
|
+
if (!config.optimizeDeps.rollupOptions) {
|
|
51
|
+
config.optimizeDeps.rollupOptions = {};
|
|
52
|
+
}
|
|
53
|
+
const emberRollupPlugins = sharedRolldownPlugins((_b = params === null || params === void 0 ? void 0 : params.rolldownSharedPlugins) !== null && _b !== void 0 ? _b : defaultRolldownSharedPlugins, config.plugins);
|
|
54
|
+
if (config.optimizeDeps.rollupOptions.plugins) {
|
|
55
|
+
if (Array.isArray(config.optimizeDeps.rollupOptions.plugins)) {
|
|
56
|
+
config.optimizeDeps.rollupOptions.plugins.push(...emberRollupPlugins);
|
|
57
|
+
}
|
|
58
|
+
else {
|
|
59
|
+
throw new Error('Could not automatically configure the Ember plugin for optimizeDeps');
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
else {
|
|
63
|
+
config.optimizeDeps.rollupOptions.plugins = emberRollupPlugins;
|
|
64
|
+
}
|
|
65
|
+
if (!config.optimizeDeps.rollupOptions.resolve) {
|
|
66
|
+
config.optimizeDeps.rollupOptions.resolve = {};
|
|
67
|
+
}
|
|
68
|
+
config.optimizeDeps.rollupOptions.resolve.extensions = extensions;
|
|
46
69
|
}
|
|
47
70
|
else {
|
|
48
|
-
|
|
71
|
+
// configure out esbuild resolver
|
|
72
|
+
if (!config.optimizeDeps.esbuildOptions) {
|
|
73
|
+
config.optimizeDeps.esbuildOptions = {};
|
|
74
|
+
}
|
|
75
|
+
if (config.optimizeDeps.esbuildOptions.plugins) {
|
|
76
|
+
config.optimizeDeps.esbuildOptions.plugins.push(esBuildResolver());
|
|
77
|
+
}
|
|
78
|
+
else {
|
|
79
|
+
config.optimizeDeps.esbuildOptions.plugins = [esBuildResolver()];
|
|
80
|
+
}
|
|
49
81
|
}
|
|
50
82
|
if (!config.build) {
|
|
51
83
|
config.build = {};
|
|
@@ -72,8 +104,16 @@ export function ember() {
|
|
|
72
104
|
// vite will try to transpile away typescript in .ts files using
|
|
73
105
|
// esbuild. But if we have any typescript, we expect it to get handled
|
|
74
106
|
// by babel, because we don't want esbuild's decorator implementation.
|
|
75
|
-
|
|
76
|
-
|
|
107
|
+
// @ts-expect-error the types aren't finished yet it would seem
|
|
108
|
+
if ((_c = this === null || this === void 0 ? void 0 : this.meta) === null || _c === void 0 ? void 0 : _c.rolldownVersion) {
|
|
109
|
+
if (config.oxc == null) {
|
|
110
|
+
config.oxc = false;
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
else {
|
|
114
|
+
if (config.esbuild == null) {
|
|
115
|
+
config.esbuild = false;
|
|
116
|
+
}
|
|
77
117
|
}
|
|
78
118
|
minification(config, env.mode);
|
|
79
119
|
},
|
|
@@ -107,4 +147,37 @@ function minification(config, mode) {
|
|
|
107
147
|
};
|
|
108
148
|
}
|
|
109
149
|
}
|
|
150
|
+
function findPlugin(plugins, name) {
|
|
151
|
+
if (!plugins) {
|
|
152
|
+
return undefined;
|
|
153
|
+
}
|
|
154
|
+
for (let element of plugins) {
|
|
155
|
+
if (typeof element === 'object' && element != null) {
|
|
156
|
+
if ('name' in element && element.name === name) {
|
|
157
|
+
return element;
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
if (Array.isArray(element)) {
|
|
161
|
+
let matched = findPlugin(element, name);
|
|
162
|
+
if (matched) {
|
|
163
|
+
return matched;
|
|
164
|
+
}
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
return undefined;
|
|
168
|
+
}
|
|
169
|
+
function sharedRolldownPlugins(sharedPluginNames, plugins) {
|
|
170
|
+
return sharedPluginNames
|
|
171
|
+
.map(name => {
|
|
172
|
+
let matched = findPlugin(plugins, name);
|
|
173
|
+
if (matched) {
|
|
174
|
+
if (name === 'embroider-resolver') {
|
|
175
|
+
// special case. Needs different config.
|
|
176
|
+
return resolver({ rolldown: true });
|
|
177
|
+
}
|
|
178
|
+
return matched;
|
|
179
|
+
}
|
|
180
|
+
})
|
|
181
|
+
.filter(Boolean);
|
|
182
|
+
}
|
|
110
183
|
//# sourceMappingURL=ember.js.map
|
package/dist/src/ember.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ember.js","sourceRoot":"","sources":["../../src/ember.ts"],"names":[],"mappings":"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","sourcesContent":["import { templateTag } from './template-tag.js';\nimport { resolver } from './resolver.js';\nimport { type UserConfig, type ConfigEnv } from 'vite';\nimport { esBuildResolver } from './esbuild-resolver.js';\n\nexport let extensions = ['.mjs', '.gjs', '.js', '.mts', '.gts', '.ts', '.hbs', '.hbs.js', '.json'];\n\nexport function ember() {\n return [\n templateTag(),\n resolver(),\n {\n name: 'vite-plugin-ember-config',\n async config(config: UserConfig, env: ConfigEnv) {\n // Default vite resolve extensions, which the user can completely\n // override if they want\n if (!config.resolve) {\n config.resolve = {};\n }\n if (!config.resolve.extensions) {\n config.resolve.extensions = extensions;\n }\n\n // Our esbuild integration only works if these extensions are\n // configured, so we force them in\n if (!config.optimizeDeps) {\n config.optimizeDeps = {};\n }\n if (!config.optimizeDeps.extensions) {\n config.optimizeDeps.extensions = [];\n }\n for (let requiredExt of ['.hbs', '.gjs', '.gts']) {\n if (!config.optimizeDeps.extensions.includes(requiredExt)) {\n config.optimizeDeps.extensions.push(requiredExt);\n }\n }\n\n // @embroider/macros needs to not go through dep optimization\n if (config.optimizeDeps.exclude) {\n config.optimizeDeps.exclude.push('@embroider/macros');\n } else {\n config.optimizeDeps.exclude = ['@embroider/macros'];\n }\n\n // configure out esbuild resolver\n if (!config.optimizeDeps.esbuildOptions) {\n config.optimizeDeps.esbuildOptions = {};\n }\n if (config.optimizeDeps.esbuildOptions.plugins) {\n config.optimizeDeps.esbuildOptions.plugins.push(esBuildResolver());\n } else {\n config.optimizeDeps.esbuildOptions.plugins = [esBuildResolver()];\n }\n\n if (!config.build) {\n config.build = {};\n }\n\n if (!config.build.rollupOptions) {\n config.build.rollupOptions = {};\n }\n\n // we provide a default build.rollupOptions.input that builds index.html\n // and, in non-production or when forcing tests, tests/index.html. But\n // the user may choose to take charge of input entirely.\n if (!config.build.rollupOptions.input) {\n config.build.rollupOptions.input = {\n main: 'index.html',\n ...(shouldBuildTests(env.mode) ? { tests: 'tests/index.html' } : undefined),\n };\n }\n\n if (!config.server) {\n config.server = {};\n }\n\n // Traditional ember development port as default.\n if (config.server.port == null) {\n config.server.port = 4200;\n }\n\n // vite will try to transpile away typescript in .ts files using\n // esbuild. But if we have any typescript, we expect it to get handled\n // by babel, because we don't want esbuild's decorator implementation.\n if (config.esbuild == null) {\n config.esbuild = false;\n }\n\n minification(config, env.mode);\n },\n },\n ];\n}\n\nfunction shouldBuildTests(mode: string) {\n return mode !== 'production' || process.env.FORCE_BUILD_TESTS;\n}\n\nfunction minification(config: UserConfig, mode: string) {\n if (mode !== 'production') {\n return;\n }\n\n /**\n * Outside of test, the only other time \"build\" is used,\n * is production\n */\n config.build ||= {};\n\n if (config.build.minify === undefined || config.build.minify === true) {\n config.build.minify = 'terser';\n }\n\n if (config.build.minify === 'terser' && !config.build.terserOptions) {\n config.build.terserOptions = {\n module: true,\n compress: {\n passes: 3,\n keep_fargs: false,\n keep_fnames: false,\n toplevel: true,\n },\n };\n }\n}\n"]}
|
|
1
|
+
{"version":3,"file":"ember.js","sourceRoot":"","sources":["../../src/ember.ts"],"names":[],"mappings":"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","sourcesContent":["import { templateTag } from './template-tag.js';\nimport { resolver } from './resolver.js';\nimport { type UserConfig, type ConfigEnv, type Plugin } from 'vite';\nimport { esBuildResolver } from './esbuild-resolver.js';\n\nexport let extensions = ['.mjs', '.gjs', '.js', '.mts', '.gts', '.ts', '.hbs', '.hbs.js', '.json'];\n\nexport const defaultRolldownSharedPlugins = [\n 'rollup-hbs-plugin',\n 'embroider-template-tag',\n 'embroider-resolver',\n 'babel',\n];\n\nexport function ember(params?: {\n /**\n * List of names of rollup plugins that should be taken from your regular Vite\n * config and also applied when Rolldown is bundling dependencies for\n * development. The default list of names is importable as\n * `defaultRolldownSharedPlugins`.\n */\n rolldownSharedPlugins?: string[];\n}) {\n return [\n templateTag(),\n resolver(),\n {\n name: 'vite-plugin-ember-config',\n async config(config: UserConfig, env: ConfigEnv) {\n // Default vite resolve extensions, which the user can completely\n // override if they want\n if (!config.resolve) {\n config.resolve = {};\n }\n if (!config.resolve.extensions) {\n config.resolve.extensions = extensions;\n }\n\n // Our esbuild integration only works if these extensions are\n // configured, so we force them in\n if (!config.optimizeDeps) {\n config.optimizeDeps = {};\n }\n if (!config.optimizeDeps.extensions) {\n config.optimizeDeps.extensions = [];\n }\n for (let requiredExt of ['.hbs', '.gjs', '.gts']) {\n if (!config.optimizeDeps.extensions.includes(requiredExt)) {\n config.optimizeDeps.extensions.push(requiredExt);\n }\n }\n\n // @embroider/macros needs to not go through dep optimization\n if (config.optimizeDeps.exclude) {\n config.optimizeDeps.exclude.push('@embroider/macros');\n } else {\n config.optimizeDeps.exclude = ['@embroider/macros'];\n }\n\n // @ts-expect-error the types aren't finished yet it would seem\n if (this?.meta?.rolldownVersion) {\n // configure our embroider resolver for optimize deps\n if (!config.optimizeDeps.rollupOptions) {\n config.optimizeDeps.rollupOptions = {};\n }\n\n const emberRollupPlugins = sharedRolldownPlugins(\n params?.rolldownSharedPlugins ?? defaultRolldownSharedPlugins,\n config.plugins\n );\n\n if (config.optimizeDeps.rollupOptions.plugins) {\n if (Array.isArray(config.optimizeDeps.rollupOptions.plugins)) {\n config.optimizeDeps.rollupOptions.plugins.push(...emberRollupPlugins);\n } else {\n throw new Error('Could not automatically configure the Ember plugin for optimizeDeps');\n }\n } else {\n config.optimizeDeps.rollupOptions.plugins = emberRollupPlugins;\n }\n\n if (!config.optimizeDeps.rollupOptions.resolve) {\n config.optimizeDeps.rollupOptions.resolve = {};\n }\n config.optimizeDeps.rollupOptions.resolve.extensions = extensions;\n } else {\n // configure out esbuild resolver\n if (!config.optimizeDeps.esbuildOptions) {\n config.optimizeDeps.esbuildOptions = {};\n }\n\n if (config.optimizeDeps.esbuildOptions.plugins) {\n config.optimizeDeps.esbuildOptions.plugins.push(esBuildResolver());\n } else {\n config.optimizeDeps.esbuildOptions.plugins = [esBuildResolver()];\n }\n }\n\n if (!config.build) {\n config.build = {};\n }\n\n if (!config.build.rollupOptions) {\n config.build.rollupOptions = {};\n }\n\n // we provide a default build.rollupOptions.input that builds index.html\n // and, in non-production or when forcing tests, tests/index.html. But\n // the user may choose to take charge of input entirely.\n if (!config.build.rollupOptions.input) {\n config.build.rollupOptions.input = {\n main: 'index.html',\n ...(shouldBuildTests(env.mode) ? { tests: 'tests/index.html' } : undefined),\n };\n }\n\n if (!config.server) {\n config.server = {};\n }\n\n // Traditional ember development port as default.\n if (config.server.port == null) {\n config.server.port = 4200;\n }\n\n // vite will try to transpile away typescript in .ts files using\n // esbuild. But if we have any typescript, we expect it to get handled\n // by babel, because we don't want esbuild's decorator implementation.\n // @ts-expect-error the types aren't finished yet it would seem\n if (this?.meta?.rolldownVersion) {\n if (config.oxc == null) {\n config.oxc = false;\n }\n } else {\n if (config.esbuild == null) {\n config.esbuild = false;\n }\n }\n\n minification(config, env.mode);\n },\n },\n ];\n}\n\nfunction shouldBuildTests(mode: string) {\n return mode !== 'production' || process.env.FORCE_BUILD_TESTS;\n}\n\nfunction minification(config: UserConfig, mode: string) {\n if (mode !== 'production') {\n return;\n }\n\n /**\n * Outside of test, the only other time \"build\" is used,\n * is production\n */\n config.build ||= {};\n\n if (config.build.minify === undefined || config.build.minify === true) {\n config.build.minify = 'terser';\n }\n\n if (config.build.minify === 'terser' && !config.build.terserOptions) {\n config.build.terserOptions = {\n module: true,\n compress: {\n passes: 3,\n keep_fargs: false,\n keep_fnames: false,\n toplevel: true,\n },\n };\n }\n}\n\nfunction findPlugin(plugins: UserConfig['plugins'], name: string): Plugin | undefined {\n if (!plugins) {\n return undefined;\n }\n for (let element of plugins) {\n if (typeof element === 'object' && element != null) {\n if ('name' in element && element.name === name) {\n return element;\n }\n }\n if (Array.isArray(element)) {\n let matched = findPlugin(element, name);\n if (matched) {\n return matched;\n }\n }\n }\n return undefined;\n}\n\nfunction sharedRolldownPlugins<T extends { name: string }>(\n sharedPluginNames: string[],\n plugins: UserConfig['plugins']\n): NonNullable<UserConfig['plugins']> {\n return sharedPluginNames\n .map(name => {\n let matched = findPlugin(plugins, name);\n if (matched) {\n if (name === 'embroider-resolver') {\n // special case. Needs different config.\n return resolver({ rolldown: true });\n }\n return matched;\n }\n })\n .filter(Boolean) as T[];\n}\n"]}
|
package/dist/src/request.d.ts
CHANGED
|
@@ -1,10 +1,14 @@
|
|
|
1
|
-
import type { ModuleRequest, RequestAdapter, RequestAdapterCreate, Resolution, VirtualResponse } from '@embroider/core';
|
|
1
|
+
import type { ModuleRequest, RequestAdapter, RequestAdapterCreate, Resolution, RewrittenPackageCache, VirtualResponse } from '@embroider/core';
|
|
2
2
|
import type { PluginContext, ResolveIdResult } from 'rollup';
|
|
3
|
+
import type { BackChannel } from './backchannel.js';
|
|
3
4
|
interface Init {
|
|
4
5
|
context: PluginContext;
|
|
5
6
|
source: string;
|
|
6
7
|
importer: string | undefined;
|
|
7
8
|
custom: Record<string, any> | undefined;
|
|
9
|
+
backChannel: BackChannel | undefined;
|
|
10
|
+
isDepBundling: boolean;
|
|
11
|
+
packageCache: RewrittenPackageCache;
|
|
8
12
|
}
|
|
9
13
|
export interface ResponseMeta {
|
|
10
14
|
virtual: VirtualResponse;
|
|
@@ -14,6 +18,9 @@ export declare class RollupRequestAdapter implements RequestAdapter<Resolution<R
|
|
|
14
18
|
private queryParams;
|
|
15
19
|
private importerQueryParams;
|
|
16
20
|
private custom;
|
|
21
|
+
private backChannel;
|
|
22
|
+
private isDepBundling;
|
|
23
|
+
private packageCache;
|
|
17
24
|
static create: RequestAdapterCreate<Init, Resolution<ResolveIdResult>>;
|
|
18
25
|
private constructor();
|
|
19
26
|
get debugType(): string;
|
package/dist/src/request.js
CHANGED
|
@@ -1,12 +1,17 @@
|
|
|
1
1
|
import core from '@embroider/core';
|
|
2
2
|
import { resolve } from 'path';
|
|
3
|
-
const { cleanUrl, getUrlQueryParams } = core;
|
|
3
|
+
const { cleanUrl, getUrlQueryParams, packageName } = core;
|
|
4
|
+
import { assertNever } from 'assert-never';
|
|
5
|
+
import { externalName } from '@embroider/reverse-exports';
|
|
4
6
|
export class RollupRequestAdapter {
|
|
5
|
-
constructor(context, queryParams, importerQueryParams, custom) {
|
|
7
|
+
constructor(context, queryParams, importerQueryParams, custom, backChannel, isDepBundling, packageCache) {
|
|
6
8
|
this.context = context;
|
|
7
9
|
this.queryParams = queryParams;
|
|
8
10
|
this.importerQueryParams = importerQueryParams;
|
|
9
11
|
this.custom = custom;
|
|
12
|
+
this.backChannel = backChannel;
|
|
13
|
+
this.isDepBundling = isDepBundling;
|
|
14
|
+
this.packageCache = packageCache;
|
|
10
15
|
}
|
|
11
16
|
get debugType() {
|
|
12
17
|
return 'rollup';
|
|
@@ -26,6 +31,7 @@ export class RollupRequestAdapter {
|
|
|
26
31
|
// unix-like specifiers but Vite needs to see a real windows path in the
|
|
27
32
|
// result.
|
|
28
33
|
id: resolve(this.specifierWithQueryParams(virtual.specifier)),
|
|
34
|
+
// @ts-expect-error the rolldown types don't include this thing that's in the rollup types
|
|
29
35
|
resolvedBy: this.fromFileWithQueryParams(request.fromFile),
|
|
30
36
|
meta: {
|
|
31
37
|
'embroider-resolver': { virtual },
|
|
@@ -40,6 +46,9 @@ export class RollupRequestAdapter {
|
|
|
40
46
|
return { type: 'not_found', err };
|
|
41
47
|
}
|
|
42
48
|
async resolve(request) {
|
|
49
|
+
if (this.backChannel) {
|
|
50
|
+
this.backChannel.requestStatus(request.specifier, request.fromFile);
|
|
51
|
+
}
|
|
43
52
|
let result = await this.context.resolve(this.specifierWithQueryParams(request.specifier), this.fromFileWithQueryParams(request.fromFile), {
|
|
44
53
|
skipSelf: true,
|
|
45
54
|
custom: {
|
|
@@ -50,16 +59,67 @@ export class RollupRequestAdapter {
|
|
|
50
59
|
},
|
|
51
60
|
},
|
|
52
61
|
});
|
|
53
|
-
if (result) {
|
|
54
|
-
let { pathname } = new URL(result.id, 'http://example.com');
|
|
55
|
-
return { type: 'found', filename: pathname, result, virtual: false };
|
|
56
|
-
}
|
|
57
|
-
else {
|
|
62
|
+
if (!result) {
|
|
58
63
|
return { type: 'not_found', err: undefined };
|
|
59
64
|
}
|
|
65
|
+
let { pathname: filename } = new URL(result.id, 'http://example.com');
|
|
66
|
+
if (this.backChannel) {
|
|
67
|
+
let status = this.backChannel.readStatus(request.specifier, request.fromFile);
|
|
68
|
+
switch (status.type) {
|
|
69
|
+
case 'not_found':
|
|
70
|
+
return { type: 'not_found', err: result };
|
|
71
|
+
case 'found':
|
|
72
|
+
if (result.external) {
|
|
73
|
+
// when we know that the file was really found, but vite has
|
|
74
|
+
// externalized it, report the true filename that was found, not the
|
|
75
|
+
// externalized request path.
|
|
76
|
+
filename = status.filename;
|
|
77
|
+
}
|
|
78
|
+
break;
|
|
79
|
+
case 'indeterminate':
|
|
80
|
+
break;
|
|
81
|
+
default:
|
|
82
|
+
throw assertNever(status);
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
if (this.isDepBundling) {
|
|
86
|
+
// we need to ensure that we don't traverse back into the app while
|
|
87
|
+
// doing dependency pre-bundling. There are multiple ways an addon can
|
|
88
|
+
// resolve things from the app, due to the existince of both app-js
|
|
89
|
+
// (modules in addons that are logically part of the app's namespace)
|
|
90
|
+
// and non-strict handlebars (which resolves
|
|
91
|
+
// components/helpers/modifiers against the app's global pool).
|
|
92
|
+
let pkg = this.packageCache.ownerOfFile(filename);
|
|
93
|
+
if ((pkg === null || pkg === void 0 ? void 0 : pkg.root) === this.packageCache.appRoot) {
|
|
94
|
+
let externalizedName = request.specifier;
|
|
95
|
+
if (!packageName(externalizedName)) {
|
|
96
|
+
// the request was a relative path. This won't remain valid once
|
|
97
|
+
// it has been bundled into vite/deps. But we know it targets the
|
|
98
|
+
// app, so we can always convert it into a non-relative import
|
|
99
|
+
// from the app's namespace
|
|
100
|
+
//
|
|
101
|
+
// IMPORTANT: whenever an addon resolves a relative path to the
|
|
102
|
+
// app, it does so because our code in the core resolver has
|
|
103
|
+
// rewritten the request to be relative to the app's root. So here
|
|
104
|
+
// we will only ever encounter relative paths that are already
|
|
105
|
+
// relative to the app's root directory.
|
|
106
|
+
externalizedName = externalName(pkg.packageJSON, externalizedName) || externalizedName;
|
|
107
|
+
}
|
|
108
|
+
return {
|
|
109
|
+
type: 'found',
|
|
110
|
+
filename: externalizedName,
|
|
111
|
+
virtual: false,
|
|
112
|
+
result: {
|
|
113
|
+
id: externalizedName,
|
|
114
|
+
external: true,
|
|
115
|
+
},
|
|
116
|
+
};
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
return { type: 'found', filename, result, virtual: false };
|
|
60
120
|
}
|
|
61
121
|
}
|
|
62
|
-
RollupRequestAdapter.create = ({ context, source, importer, custom, }) => {
|
|
122
|
+
RollupRequestAdapter.create = ({ context, source, importer, custom, backChannel, isDepBundling, packageCache, }) => {
|
|
63
123
|
var _a, _b, _c;
|
|
64
124
|
if (!((_b = (_a = custom === null || custom === void 0 ? void 0 : custom.embroider) === null || _a === void 0 ? void 0 : _a.enableCustomResolver) !== null && _b !== void 0 ? _b : true)) {
|
|
65
125
|
return;
|
|
@@ -84,7 +144,7 @@ RollupRequestAdapter.create = ({ context, source, importer, custom, }) => {
|
|
|
84
144
|
let queryParams = getUrlQueryParams(source);
|
|
85
145
|
return {
|
|
86
146
|
initialState: { specifier: cleanSource, fromFile, meta: (_c = custom === null || custom === void 0 ? void 0 : custom.embroider) === null || _c === void 0 ? void 0 : _c.meta },
|
|
87
|
-
adapter: new RollupRequestAdapter(context, queryParams, importerQueryParams, custom),
|
|
147
|
+
adapter: new RollupRequestAdapter(context, queryParams, importerQueryParams, custom, backChannel, isDepBundling, packageCache),
|
|
88
148
|
};
|
|
89
149
|
}
|
|
90
150
|
};
|
package/dist/src/request.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"request.js","sourceRoot":"","sources":["../../src/request.ts"],"names":[],"mappings":"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","sourcesContent":["import type { ModuleRequest, RequestAdapter, RequestAdapterCreate, Resolution, VirtualResponse } from '@embroider/core';\nimport core from '@embroider/core';\nimport { resolve } from 'path';\n\nconst { cleanUrl, getUrlQueryParams } = core;\nimport type { PluginContext, ResolveIdResult } from 'rollup';\n\ninterface Init {\n context: PluginContext;\n source: string;\n importer: string | undefined;\n custom: Record<string, any> | undefined;\n}\n\nexport interface ResponseMeta {\n virtual: VirtualResponse;\n}\n\nexport class RollupRequestAdapter implements RequestAdapter<Resolution<ResolveIdResult>> {\n static create: RequestAdapterCreate<Init, Resolution<ResolveIdResult>> = ({\n context,\n source,\n importer,\n custom,\n }: Init) => {\n if (!(custom?.embroider?.enableCustomResolver ?? true)) {\n return;\n }\n if (source && importer && source[0] !== '\\0') {\n // strip query params off the importer\n let fromFile = cleanUrl(importer);\n if (process.platform === 'win32') {\n // embroider uses real OS paths for filenames. Vite and Esbuild don't do so consistently.\n fromFile = fromFile.replace(/\\//g, '\\\\');\n }\n let importerQueryParams = getUrlQueryParams(importer);\n\n if (source.startsWith('/@embroider/virtual/')) {\n // when our virtual paths are used in HTML they come into here with a /\n // prefix. We still want them to resolve like packages.\n source = source.slice(1);\n }\n\n // strip query params off the source but keep track of them\n // we use regexp-based methods over a URL object because the\n // source can be a relative path.\n let cleanSource = cleanUrl(source);\n let queryParams = getUrlQueryParams(source);\n\n return {\n initialState: { specifier: cleanSource, fromFile, meta: custom?.embroider?.meta },\n adapter: new RollupRequestAdapter(context, queryParams, importerQueryParams, custom),\n };\n }\n };\n\n private constructor(\n private context: PluginContext,\n private queryParams: string,\n private importerQueryParams: string,\n private custom: Record<string, unknown> | undefined\n ) {}\n\n get debugType() {\n return 'rollup';\n }\n\n private specifierWithQueryParams(specifier: string): string {\n return `${specifier}${this.queryParams}`;\n }\n\n private fromFileWithQueryParams(fromFile: string): string {\n return `${fromFile}${this.importerQueryParams}`;\n }\n\n virtualResponse(\n request: ModuleRequest<Resolution<ResolveIdResult>>,\n virtual: VirtualResponse\n ): Resolution<ResolveIdResult> {\n return {\n type: 'found',\n filename: virtual.specifier,\n result: {\n // The `resolve` here is necessary on windows, where we might have\n // unix-like specifiers but Vite needs to see a real windows path in the\n // result.\n id: resolve(this.specifierWithQueryParams(virtual.specifier)),\n resolvedBy: this.fromFileWithQueryParams(request.fromFile),\n meta: {\n 'embroider-resolver': { virtual } satisfies ResponseMeta,\n },\n },\n virtual,\n };\n }\n\n notFoundResponse(_request: ModuleRequest<Resolution<ResolveIdResult>>): Resolution<ResolveIdResult> {\n let err = new Error(`module not found ${this.specifierWithQueryParams}`);\n (err as any).code = 'MODULE_NOT_FOUND';\n return { type: 'not_found', err };\n }\n\n async resolve(request: ModuleRequest<Resolution<ResolveIdResult>>): Promise<Resolution<ResolveIdResult>> {\n let result = await this.context.resolve(\n this.specifierWithQueryParams(request.specifier),\n this.fromFileWithQueryParams(request.fromFile),\n {\n skipSelf: true,\n custom: {\n ...this.custom,\n embroider: {\n enableCustomResolver: false,\n meta: request.meta,\n },\n },\n }\n );\n if (result) {\n let { pathname } = new URL(result.id, 'http://example.com');\n return { type: 'found', filename: pathname, result, virtual: false };\n } else {\n return { type: 'not_found', err: undefined };\n }\n }\n}\n"]}
|
|
1
|
+
{"version":3,"file":"request.js","sourceRoot":"","sources":["../../src/request.ts"],"names":[],"mappings":"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","sourcesContent":["import type {\n ModuleRequest,\n RequestAdapter,\n RequestAdapterCreate,\n Resolution,\n RewrittenPackageCache,\n VirtualResponse,\n} from '@embroider/core';\nimport core from '@embroider/core';\nimport { resolve } from 'path';\n\nconst { cleanUrl, getUrlQueryParams, packageName } = core;\nimport type { PluginContext, ResolveIdResult } from 'rollup';\nimport type { BackChannel } from './backchannel.js';\nimport { assertNever } from 'assert-never';\nimport { externalName } from '@embroider/reverse-exports';\n\ninterface Init {\n context: PluginContext;\n source: string;\n importer: string | undefined;\n custom: Record<string, any> | undefined;\n backChannel: BackChannel | undefined;\n isDepBundling: boolean;\n packageCache: RewrittenPackageCache;\n}\n\nexport interface ResponseMeta {\n virtual: VirtualResponse;\n}\n\nexport class RollupRequestAdapter implements RequestAdapter<Resolution<ResolveIdResult>> {\n static create: RequestAdapterCreate<Init, Resolution<ResolveIdResult>> = ({\n context,\n source,\n importer,\n custom,\n backChannel,\n isDepBundling,\n packageCache,\n }: Init) => {\n if (!(custom?.embroider?.enableCustomResolver ?? true)) {\n return;\n }\n if (source && importer && source[0] !== '\\0') {\n // strip query params off the importer\n let fromFile = cleanUrl(importer);\n if (process.platform === 'win32') {\n // embroider uses real OS paths for filenames. Vite and Esbuild don't do so consistently.\n fromFile = fromFile.replace(/\\//g, '\\\\');\n }\n let importerQueryParams = getUrlQueryParams(importer);\n\n if (source.startsWith('/@embroider/virtual/')) {\n // when our virtual paths are used in HTML they come into here with a /\n // prefix. We still want them to resolve like packages.\n source = source.slice(1);\n }\n\n // strip query params off the source but keep track of them\n // we use regexp-based methods over a URL object because the\n // source can be a relative path.\n let cleanSource = cleanUrl(source);\n let queryParams = getUrlQueryParams(source);\n\n return {\n initialState: { specifier: cleanSource, fromFile, meta: custom?.embroider?.meta },\n adapter: new RollupRequestAdapter(\n context,\n queryParams,\n importerQueryParams,\n custom,\n backChannel,\n isDepBundling,\n packageCache\n ),\n };\n }\n };\n\n private constructor(\n private context: PluginContext,\n private queryParams: string,\n private importerQueryParams: string,\n private custom: Record<string, unknown> | undefined,\n private backChannel: BackChannel | undefined,\n private isDepBundling: boolean,\n private packageCache: RewrittenPackageCache\n ) {}\n\n get debugType() {\n return 'rollup';\n }\n\n private specifierWithQueryParams(specifier: string): string {\n return `${specifier}${this.queryParams}`;\n }\n\n private fromFileWithQueryParams(fromFile: string): string {\n return `${fromFile}${this.importerQueryParams}`;\n }\n\n virtualResponse(\n request: ModuleRequest<Resolution<ResolveIdResult>>,\n virtual: VirtualResponse\n ): Resolution<ResolveIdResult> {\n return {\n type: 'found',\n filename: virtual.specifier,\n result: {\n // The `resolve` here is necessary on windows, where we might have\n // unix-like specifiers but Vite needs to see a real windows path in the\n // result.\n id: resolve(this.specifierWithQueryParams(virtual.specifier)),\n // @ts-expect-error the rolldown types don't include this thing that's in the rollup types\n resolvedBy: this.fromFileWithQueryParams(request.fromFile),\n meta: {\n 'embroider-resolver': { virtual } satisfies ResponseMeta,\n },\n },\n virtual,\n };\n }\n\n notFoundResponse(_request: ModuleRequest<Resolution<ResolveIdResult>>): Resolution<ResolveIdResult> {\n let err = new Error(`module not found ${this.specifierWithQueryParams}`);\n (err as any).code = 'MODULE_NOT_FOUND';\n return { type: 'not_found', err };\n }\n\n async resolve(request: ModuleRequest<Resolution<ResolveIdResult>>): Promise<Resolution<ResolveIdResult>> {\n if (this.backChannel) {\n this.backChannel.requestStatus(request.specifier, request.fromFile);\n }\n\n let result = await this.context.resolve(\n this.specifierWithQueryParams(request.specifier),\n this.fromFileWithQueryParams(request.fromFile),\n {\n skipSelf: true,\n custom: {\n ...this.custom,\n embroider: {\n enableCustomResolver: false,\n meta: request.meta,\n },\n },\n }\n );\n\n if (!result) {\n return { type: 'not_found', err: undefined };\n }\n\n let { pathname: filename } = new URL(result.id, 'http://example.com');\n\n if (this.backChannel) {\n let status = this.backChannel.readStatus(request.specifier, request.fromFile);\n switch (status.type) {\n case 'not_found':\n return { type: 'not_found', err: result };\n case 'found':\n if (result.external) {\n // when we know that the file was really found, but vite has\n // externalized it, report the true filename that was found, not the\n // externalized request path.\n filename = status.filename;\n }\n break;\n case 'indeterminate':\n break;\n default:\n throw assertNever(status);\n }\n }\n\n if (this.isDepBundling) {\n // we need to ensure that we don't traverse back into the app while\n // doing dependency pre-bundling. There are multiple ways an addon can\n // resolve things from the app, due to the existince of both app-js\n // (modules in addons that are logically part of the app's namespace)\n // and non-strict handlebars (which resolves\n // components/helpers/modifiers against the app's global pool).\n let pkg = this.packageCache.ownerOfFile(filename);\n if (pkg?.root === this.packageCache.appRoot) {\n let externalizedName = request.specifier;\n if (!packageName(externalizedName)) {\n // the request was a relative path. This won't remain valid once\n // it has been bundled into vite/deps. But we know it targets the\n // app, so we can always convert it into a non-relative import\n // from the app's namespace\n //\n // IMPORTANT: whenever an addon resolves a relative path to the\n // app, it does so because our code in the core resolver has\n // rewritten the request to be relative to the app's root. So here\n // we will only ever encounter relative paths that are already\n // relative to the app's root directory.\n externalizedName = externalName(pkg.packageJSON, externalizedName) || externalizedName;\n }\n return {\n type: 'found',\n filename: externalizedName,\n virtual: false,\n result: {\n id: externalizedName,\n external: true,\n },\n };\n }\n }\n\n return { type: 'found', filename, result, virtual: false };\n }\n}\n"]}
|
package/dist/src/resolver.d.ts
CHANGED
package/dist/src/resolver.js
CHANGED
|
@@ -9,18 +9,22 @@ import { writeStatus } from './backchannel.js';
|
|
|
9
9
|
import { externalName } from '@embroider/reverse-exports';
|
|
10
10
|
import fs from 'fs-extra';
|
|
11
11
|
import { createHash } from 'crypto';
|
|
12
|
+
import { BackChannel } from './backchannel.js';
|
|
12
13
|
const { ensureSymlinkSync, outputJSONSync } = fs;
|
|
13
14
|
const debug = makeDebug('embroider:vite');
|
|
14
|
-
export function resolver() {
|
|
15
|
+
export function resolver(params) {
|
|
15
16
|
const resolverLoader = new ResolverLoader(process.cwd());
|
|
16
17
|
let server;
|
|
17
18
|
const virtualDeps = new Map();
|
|
18
19
|
const notViteDeps = new Set();
|
|
19
20
|
const responseMetas = new Map();
|
|
21
|
+
const backChannel = (params === null || params === void 0 ? void 0 : params.rolldown) ? new BackChannel() : undefined;
|
|
20
22
|
async function resolveId(context, source, importer, options) {
|
|
21
|
-
var _a;
|
|
23
|
+
var _a, _b, _c;
|
|
24
|
+
// @ts-expect-error not included in upstream types
|
|
25
|
+
let isDepBundling = Boolean((_b = (_a = context.outputOptions) === null || _a === void 0 ? void 0 : _a.dir) === null || _b === void 0 ? void 0 : _b.includes('.vite'));
|
|
22
26
|
// vite 5 exposes `custom.depscan`, vite 6 exposes `options.scan`
|
|
23
|
-
if (((
|
|
27
|
+
if (((_c = options.custom) === null || _c === void 0 ? void 0 : _c.depScan) || options.scan) {
|
|
24
28
|
return await observeDepScan(context, source, importer, options);
|
|
25
29
|
}
|
|
26
30
|
let request = ModuleRequest.create(RollupRequestAdapter.create, {
|
|
@@ -28,6 +32,9 @@ export function resolver() {
|
|
|
28
32
|
source,
|
|
29
33
|
importer,
|
|
30
34
|
custom: options.custom,
|
|
35
|
+
backChannel,
|
|
36
|
+
isDepBundling,
|
|
37
|
+
packageCache: resolverLoader.resolver.packageCache,
|
|
31
38
|
});
|
|
32
39
|
if (!request) {
|
|
33
40
|
// fallthrough to other rollup plugins
|
package/dist/src/resolver.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"resolver.js","sourceRoot":"","sources":["../../src/resolver.ts"],"names":[],"mappings":"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","sourcesContent":["import { type Plugin, type ViteDevServer, normalizePath } from 'vite';\nimport core, { ModuleRequest, type Resolver } from '@embroider/core';\nconst { virtualContent, ResolverLoader, explicitRelative, cleanUrl, tmpdir } = core;\nimport { type ResponseMeta, RollupRequestAdapter } from './request.js';\nimport { assertNever } from 'assert-never';\nimport makeDebug from 'debug';\nimport { join, normalize, resolve } from 'path';\nimport { writeStatus } from './backchannel.js';\nimport type { PluginContext, ResolveIdResult } from 'rollup';\nimport { externalName } from '@embroider/reverse-exports';\nimport fs from 'fs-extra';\nimport { createHash } from 'crypto';\n\nconst { ensureSymlinkSync, outputJSONSync } = fs;\n\nconst debug = makeDebug('embroider:vite');\n\nexport function resolver(): Plugin {\n const resolverLoader = new ResolverLoader(process.cwd());\n let server: ViteDevServer;\n const virtualDeps: Map<string, string[]> = new Map();\n const notViteDeps = new Set<string>();\n const responseMetas: Map<string, ResponseMeta> = new Map();\n\n async function resolveId(\n context: PluginContext,\n source: string,\n importer: string | undefined,\n options: { custom?: Record<string, unknown>; scan?: boolean }\n ) {\n // vite 5 exposes `custom.depscan`, vite 6 exposes `options.scan`\n if (options.custom?.depScan || options.scan) {\n return await observeDepScan(context, source, importer, options);\n }\n\n let request = ModuleRequest.create(RollupRequestAdapter.create, {\n context,\n source,\n importer,\n custom: options.custom,\n });\n if (!request) {\n // fallthrough to other rollup plugins\n return null;\n }\n let resolution = await resolverLoader.resolver.resolve(request);\n switch (resolution.type) {\n case 'found':\n if (resolution.virtual) {\n return resolution.result;\n } else {\n return await maybeCaptureNewOptimizedDep(context, resolverLoader.resolver, resolution.result, notViteDeps);\n }\n case 'not_found':\n return null;\n default:\n throw assertNever(resolution);\n }\n }\n\n async function ensureVirtualResolve(context: PluginContext, specifier: string): Promise<ResponseMeta> {\n let result = await resolveId(\n context,\n specifier,\n resolve(resolverLoader.resolver.options.appRoot, 'package.json'),\n {}\n );\n if (!result) {\n throw new Error(`bug: expected to resolve ${specifier}`);\n }\n if (typeof result === 'string') {\n throw new Error(`bug: expected to get a PartialResolvedId`);\n }\n let meta = result.meta?.['embroider-resolver'] as ResponseMeta | undefined;\n if (!meta) {\n throw new Error(`bug: no response meta for ${specifier}`);\n }\n return meta;\n }\n\n async function emitVirtualFile(context: PluginContext, fileName: string): Promise<void> {\n context.emitFile({\n type: 'asset',\n fileName,\n source: virtualContent((await ensureVirtualResolve(context, fileName)).virtual, resolverLoader.resolver).src,\n });\n }\n\n let mode = '';\n\n return {\n name: 'embroider-resolver',\n enforce: 'pre',\n\n configResolved(config) {\n mode = config.mode;\n },\n\n configureServer(s) {\n server = s;\n server.watcher.on('all', (_eventName, path) => {\n for (let [id, watches] of virtualDeps) {\n for (let watch of watches) {\n if (path.startsWith(watch)) {\n debug('Invalidate %s because %s', id, path);\n server.moduleGraph.onFileChange(id);\n let m = server.moduleGraph.getModuleById(id);\n if (m) {\n server.reloadModule(m);\n }\n }\n }\n }\n });\n return () => {\n server.middlewares.use((req, _res, next) => {\n const base = server.config.base || '/';\n let originalUrl = req.originalUrl;\n if (originalUrl?.startsWith(base)) {\n originalUrl = req.originalUrl!.slice(base.length - 1);\n }\n if (originalUrl && originalUrl.length > 1) {\n if (originalUrl?.match(/^\\/tests($|\\?)/)) {\n req.url = `/tests/index.html`;\n return next();\n }\n }\n return next();\n });\n };\n },\n\n async resolveId(source, importer, options) {\n let resolution = await resolveId(this, source, importer, options);\n if (typeof resolution === 'string') {\n return resolution;\n }\n if (resolution && resolution.meta?.['embroider-resolver']) {\n responseMetas.set(normalizePath(resolution.id), resolution.meta['embroider-resolver'] as ResponseMeta);\n }\n return resolution;\n },\n\n load(id) {\n let meta = responseMetas.get(normalizePath(id));\n if (meta?.virtual) {\n let { src, watches } = virtualContent(meta.virtual, resolverLoader.resolver);\n virtualDeps.set(id, watches);\n server?.watcher.add(watches);\n return src;\n }\n },\n async buildEnd() {\n emitVirtualFile(this, '@embroider/virtual/vendor.js');\n emitVirtualFile(this, '@embroider/virtual/vendor.css');\n\n if (mode !== 'production') {\n emitVirtualFile(this, '@embroider/virtual/test-support.js');\n emitVirtualFile(this, '@embroider/virtual/test-support.css');\n }\n },\n };\n}\n\n// During depscan, we have a wildly different job than during normal\n// usage. Embroider's esbuild resolver plugin replaces this rollup\n// resolver plugin for actually doing resolving, so we don't do any of\n// that. But we are still well-positioned to observe what vite's rollup\n// resolver plugin is doing, and that is important because vite's\n// esbuild depscan plugin will always obscure the results before\n// embroider's esbuild resolver plugin can see them. It obscures the\n// results by marking *both* \"not found\" and \"this is a third-party\n// package\" as \"external: true\". We really care about the difference\n// between the two, since we have fallback behaviors that should apply\n// to \"not found\" that should not apply to successfully discovered\n// third-party packages.\nasync function observeDepScan(context: PluginContext, source: string, importer: string | undefined, options: any) {\n let result = await context.resolve(source, importer, {\n ...options,\n skipSelf: true,\n });\n writeStatus(source, importer ?? '', result ? { type: 'found', filename: result.id } : { type: 'not_found' });\n return result;\n}\n\nfunction idFromResult(result: ResolveIdResult): string | undefined {\n if (!result) {\n return undefined;\n }\n if (typeof result === 'string') {\n return cleanUrl(result);\n }\n return cleanUrl(result.id);\n}\n\nfunction hashed(path: string): string {\n let h = createHash('sha1');\n return h.update(path).digest('hex').slice(0, 8);\n}\n\nasync function maybeCaptureNewOptimizedDep(\n context: PluginContext,\n resolver: Resolver,\n result: ResolveIdResult,\n notViteDeps: Set<string>\n): Promise<ResolveIdResult> {\n let foundFile = idFromResult(result);\n if (!foundFile) {\n return result;\n }\n if (\n foundFile.includes('.vite') &&\n normalize(foundFile).startsWith(join(resolver.packageCache.appRoot, 'node_modules', '.vite'))\n ) {\n debug('maybeCaptureNewOptimizedDep: %s already in vite deps', foundFile);\n return result;\n }\n let pkg = resolver.packageCache.ownerOfFile(foundFile);\n if (!pkg?.isV2Addon()) {\n debug('maybeCaptureNewOptimizedDep: %s not in v2 addon', foundFile);\n return result;\n }\n let target = externalName(pkg.packageJSON, explicitRelative(pkg.root, foundFile));\n if (!target) {\n debug('maybeCaptureNewOptimizedDep: %s is not exported', foundFile);\n return result;\n }\n\n if (notViteDeps.has(foundFile)) {\n debug('maybeCaptureNewOptimizedDep: already attempted %s', foundFile);\n return result;\n }\n\n debug('maybeCaptureNewOptimizedDep: doing re-resolve for %s ', foundFile);\n\n let jumpRoot = join(tmpdir, 'embroider-vite-jump', hashed(pkg.root));\n let fromFile = join(jumpRoot, 'package.json');\n outputJSONSync(fromFile, {\n name: 'jump-root',\n });\n ensureSymlinkSync(pkg.root, join(jumpRoot, 'node_modules', pkg.name));\n let newResult = await context.resolve(target, fromFile);\n if (newResult) {\n if (idFromResult(newResult) === foundFile) {\n // This case is normal. For example, people could be using\n // `optimizeDeps.exclude` or they might be working in a monorepo where an\n // addon is not in node_modules. In both cases vite will decide not to\n // optimize the file, even though we gave it a chance to.\n //\n // We cache that result so we don't keep trying.\n debug('maybeCaptureNewOptimizedDep: %s did not become an optimized dep', foundFile);\n notViteDeps.add(foundFile);\n }\n\n return newResult;\n } else {\n return result;\n }\n}\n"]}
|
|
1
|
+
{"version":3,"file":"resolver.js","sourceRoot":"","sources":["../../src/resolver.ts"],"names":[],"mappings":"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","sourcesContent":["import { type Plugin, type ViteDevServer, normalizePath } from 'vite';\nimport core, { ModuleRequest, type Resolver } from '@embroider/core';\nconst { virtualContent, ResolverLoader, explicitRelative, cleanUrl, tmpdir } = core;\nimport { type ResponseMeta, RollupRequestAdapter } from './request.js';\nimport { assertNever } from 'assert-never';\nimport makeDebug from 'debug';\nimport { join, normalize, resolve } from 'path';\nimport { writeStatus } from './backchannel.js';\nimport type { PluginContext, ResolveIdResult } from 'rollup';\nimport { externalName } from '@embroider/reverse-exports';\nimport fs from 'fs-extra';\nimport { createHash } from 'crypto';\nimport { BackChannel } from './backchannel.js';\n\nconst { ensureSymlinkSync, outputJSONSync } = fs;\n\nconst debug = makeDebug('embroider:vite');\n\nexport function resolver(params?: { rolldown?: boolean }): Plugin {\n const resolverLoader = new ResolverLoader(process.cwd());\n let server: ViteDevServer;\n const virtualDeps: Map<string, string[]> = new Map();\n const notViteDeps = new Set<string>();\n const responseMetas: Map<string, ResponseMeta> = new Map();\n const backChannel = params?.rolldown ? new BackChannel() : undefined;\n\n async function resolveId(\n context: PluginContext,\n source: string,\n importer: string | undefined,\n options: { custom?: Record<string, unknown>; scan?: boolean }\n ) {\n // @ts-expect-error not included in upstream types\n let isDepBundling = Boolean(context.outputOptions?.dir?.includes('.vite'));\n\n // vite 5 exposes `custom.depscan`, vite 6 exposes `options.scan`\n if (options.custom?.depScan || options.scan) {\n return await observeDepScan(context, source, importer, options);\n }\n\n let request = ModuleRequest.create(RollupRequestAdapter.create, {\n context,\n source,\n importer,\n custom: options.custom,\n backChannel,\n isDepBundling,\n packageCache: resolverLoader.resolver.packageCache,\n });\n if (!request) {\n // fallthrough to other rollup plugins\n return null;\n }\n let resolution = await resolverLoader.resolver.resolve(request);\n switch (resolution.type) {\n case 'found':\n if (resolution.virtual) {\n return resolution.result;\n } else {\n return await maybeCaptureNewOptimizedDep(context, resolverLoader.resolver, resolution.result, notViteDeps);\n }\n case 'not_found':\n return null;\n default:\n throw assertNever(resolution);\n }\n }\n\n async function ensureVirtualResolve(context: PluginContext, specifier: string): Promise<ResponseMeta> {\n let result = await resolveId(\n context,\n specifier,\n resolve(resolverLoader.resolver.options.appRoot, 'package.json'),\n {}\n );\n if (!result) {\n throw new Error(`bug: expected to resolve ${specifier}`);\n }\n if (typeof result === 'string') {\n throw new Error(`bug: expected to get a PartialResolvedId`);\n }\n let meta = result.meta?.['embroider-resolver'] as ResponseMeta | undefined;\n if (!meta) {\n throw new Error(`bug: no response meta for ${specifier}`);\n }\n return meta;\n }\n\n async function emitVirtualFile(context: PluginContext, fileName: string): Promise<void> {\n context.emitFile({\n type: 'asset',\n fileName,\n source: virtualContent((await ensureVirtualResolve(context, fileName)).virtual, resolverLoader.resolver).src,\n });\n }\n\n let mode = '';\n\n return {\n name: 'embroider-resolver',\n enforce: 'pre',\n\n configResolved(config) {\n mode = config.mode;\n },\n\n configureServer(s) {\n server = s;\n server.watcher.on('all', (_eventName, path) => {\n for (let [id, watches] of virtualDeps) {\n for (let watch of watches) {\n if (path.startsWith(watch)) {\n debug('Invalidate %s because %s', id, path);\n server.moduleGraph.onFileChange(id);\n let m = server.moduleGraph.getModuleById(id);\n if (m) {\n server.reloadModule(m);\n }\n }\n }\n }\n });\n return () => {\n server.middlewares.use((req, _res, next) => {\n const base = server.config.base || '/';\n let originalUrl = req.originalUrl;\n if (originalUrl?.startsWith(base)) {\n originalUrl = req.originalUrl!.slice(base.length - 1);\n }\n if (originalUrl && originalUrl.length > 1) {\n if (originalUrl?.match(/^\\/tests($|\\?)/)) {\n req.url = `/tests/index.html`;\n return next();\n }\n }\n return next();\n });\n };\n },\n\n async resolveId(source, importer, options) {\n let resolution = await resolveId(this, source, importer, options);\n if (typeof resolution === 'string') {\n return resolution;\n }\n if (resolution && resolution.meta?.['embroider-resolver']) {\n responseMetas.set(normalizePath(resolution.id), resolution.meta['embroider-resolver'] as ResponseMeta);\n }\n return resolution;\n },\n\n load(id) {\n let meta = responseMetas.get(normalizePath(id));\n if (meta?.virtual) {\n let { src, watches } = virtualContent(meta.virtual, resolverLoader.resolver);\n virtualDeps.set(id, watches);\n server?.watcher.add(watches);\n return src;\n }\n },\n async buildEnd() {\n emitVirtualFile(this, '@embroider/virtual/vendor.js');\n emitVirtualFile(this, '@embroider/virtual/vendor.css');\n\n if (mode !== 'production') {\n emitVirtualFile(this, '@embroider/virtual/test-support.js');\n emitVirtualFile(this, '@embroider/virtual/test-support.css');\n }\n },\n };\n}\n\n// During depscan, we have a wildly different job than during normal\n// usage. Embroider's esbuild resolver plugin replaces this rollup\n// resolver plugin for actually doing resolving, so we don't do any of\n// that. But we are still well-positioned to observe what vite's rollup\n// resolver plugin is doing, and that is important because vite's\n// esbuild depscan plugin will always obscure the results before\n// embroider's esbuild resolver plugin can see them. It obscures the\n// results by marking *both* \"not found\" and \"this is a third-party\n// package\" as \"external: true\". We really care about the difference\n// between the two, since we have fallback behaviors that should apply\n// to \"not found\" that should not apply to successfully discovered\n// third-party packages.\nasync function observeDepScan(context: PluginContext, source: string, importer: string | undefined, options: any) {\n let result = await context.resolve(source, importer, {\n ...options,\n skipSelf: true,\n });\n writeStatus(source, importer ?? '', result ? { type: 'found', filename: result.id } : { type: 'not_found' });\n return result;\n}\n\nfunction idFromResult(result: ResolveIdResult): string | undefined {\n if (!result) {\n return undefined;\n }\n if (typeof result === 'string') {\n return cleanUrl(result);\n }\n return cleanUrl(result.id);\n}\n\nfunction hashed(path: string): string {\n let h = createHash('sha1');\n return h.update(path).digest('hex').slice(0, 8);\n}\n\nasync function maybeCaptureNewOptimizedDep(\n context: PluginContext,\n resolver: Resolver,\n result: ResolveIdResult,\n notViteDeps: Set<string>\n): Promise<ResolveIdResult> {\n let foundFile = idFromResult(result);\n if (!foundFile) {\n return result;\n }\n if (\n foundFile.includes('.vite') &&\n normalize(foundFile).startsWith(join(resolver.packageCache.appRoot, 'node_modules', '.vite'))\n ) {\n debug('maybeCaptureNewOptimizedDep: %s already in vite deps', foundFile);\n return result;\n }\n let pkg = resolver.packageCache.ownerOfFile(foundFile);\n if (!pkg?.isV2Addon()) {\n debug('maybeCaptureNewOptimizedDep: %s not in v2 addon', foundFile);\n return result;\n }\n let target = externalName(pkg.packageJSON, explicitRelative(pkg.root, foundFile));\n if (!target) {\n debug('maybeCaptureNewOptimizedDep: %s is not exported', foundFile);\n return result;\n }\n\n if (notViteDeps.has(foundFile)) {\n debug('maybeCaptureNewOptimizedDep: already attempted %s', foundFile);\n return result;\n }\n\n debug('maybeCaptureNewOptimizedDep: doing re-resolve for %s ', foundFile);\n\n let jumpRoot = join(tmpdir, 'embroider-vite-jump', hashed(pkg.root));\n let fromFile = join(jumpRoot, 'package.json');\n outputJSONSync(fromFile, {\n name: 'jump-root',\n });\n ensureSymlinkSync(pkg.root, join(jumpRoot, 'node_modules', pkg.name));\n let newResult = await context.resolve(target, fromFile);\n if (newResult) {\n if (idFromResult(newResult) === foundFile) {\n // This case is normal. For example, people could be using\n // `optimizeDeps.exclude` or they might be working in a monorepo where an\n // addon is not in node_modules. In both cases vite will decide not to\n // optimize the file, even though we gave it a chance to.\n //\n // We cache that result so we don't keep trying.\n debug('maybeCaptureNewOptimizedDep: %s did not become an optimized dep', foundFile);\n notViteDeps.add(foundFile);\n }\n\n return newResult;\n } else {\n return result;\n }\n}\n"]}
|
package/dist/src/scripts.js
CHANGED
|
@@ -29,6 +29,7 @@ export function scripts(params) {
|
|
|
29
29
|
// this hook only runs in `vite build`
|
|
30
30
|
for (let name of names) {
|
|
31
31
|
for (let file of await optimizer.optimizedScript(name)) {
|
|
32
|
+
// @ts-expect-error rolldowns types seem to have a few issues 🤔
|
|
32
33
|
this.emitFile(file);
|
|
33
34
|
}
|
|
34
35
|
}
|
package/dist/src/scripts.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"scripts.js","sourceRoot":"","sources":["../../src/scripts.ts"],"names":[],"mappings":"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","sourcesContent":["import type { Plugin } from 'vite';\nimport type { EmittedFile } from 'rollup';\nimport { JSDOM } from 'jsdom';\nimport fs from 'fs-extra';\nconst { readFileSync, readJSONSync, existsSync } = fs;\nimport { dirname, posix, resolve } from 'path';\n\n// This is a type-only import, so it gets compiled away. At runtime, we load\n// terser lazily so it's only loaded for production builds that use it. Don't\n// add any non-type-only imports here.\nimport type { MinifyOptions } from 'terser';\n\nconst defaults = ['/assets/vendor.js', '/assets/test-support.js'];\n\nexport function scripts(params?: { include?: string[]; exclude?: string[] }): Plugin {\n let optimizer: ScriptOptimizer;\n\n // configured names are always interpreted as origin-absolute URLs.\n let names = (params?.include ?? defaults)\n .filter(name => !params?.exclude?.includes(name))\n .map(name => {\n if (name.startsWith('/')) {\n return name;\n } else {\n return '/' + name;\n }\n });\n\n let config: any = null;\n\n return {\n name: 'embroider-scripts',\n enforce: 'pre',\n\n configResolved(resolvedConfig) {\n config = resolvedConfig;\n optimizer = new ScriptOptimizer(resolvedConfig.root);\n },\n\n async generateBundle() {\n // this hook only runs in `vite build`\n for (let name of names) {\n for (let file of await optimizer.optimizedScript(name)) {\n this.emitFile(file);\n }\n }\n },\n\n transformIndexHtml(htmlIn, context) {\n // we don't do anything in `vite dev`, we only need to work in `vite\n // build`\n if (!context.server) {\n return optimizer.transformHTML(htmlIn, config.base);\n }\n },\n };\n}\n\nclass ScriptOptimizer {\n private emitted = new Map<string, string>();\n private transformState:\n | {\n htmlIn: string;\n htmlOut: string;\n parsed: JSDOM;\n }\n | undefined;\n\n constructor(private rootDir: string) {}\n\n async optimizedScript(script: string): Promise<EmittedFile[]> {\n let fullName = resolve(this.rootDir, script.slice(1));\n if (!existsSync(fullName)) {\n // in prod builds, test-support.js isn't going to exist (for example)\n return [];\n }\n\n // loading these lazily here so they never load in non-production builds.\n // The node cache will ensures we only load them once.\n const [Terser, srcURL] = await Promise.all([import('terser'), import('source-map-url')]);\n\n let inCode = readFileSync(fullName, 'utf8');\n let terserOpts: MinifyOptions = {};\n let fileRelativeSourceMapURL;\n let appRelativeSourceMapURL;\n if (srcURL.default.existsIn(inCode)) {\n fileRelativeSourceMapURL = srcURL.default.getFrom(inCode)!;\n appRelativeSourceMapURL = posix.join(dirname(script.slice(1)), fileRelativeSourceMapURL);\n let content;\n try {\n content = readJSONSync(resolve(this.rootDir, appRelativeSourceMapURL));\n } catch (err) {\n // the script refers to a sourcemap that doesn't exist, so we just leave\n // the map out.\n }\n if (content) {\n terserOpts.sourceMap = { content, url: fileRelativeSourceMapURL };\n }\n }\n let { code: outCode, map: outMap } = await Terser.minify(inCode, terserOpts);\n let finalFilename = await this.getFingerprintedFilename(script, outCode!);\n let emit: EmittedFile[] = [];\n emit.push({\n type: 'asset',\n fileName: finalFilename.slice(1),\n source: outCode!,\n });\n this.emitted.set(script, finalFilename);\n if (appRelativeSourceMapURL && outMap) {\n emit.push({\n type: 'asset',\n fileName: appRelativeSourceMapURL,\n source: JSON.stringify(outMap, null, 2),\n });\n }\n return emit;\n }\n\n async getFingerprintedFilename(filename: string, content: string): Promise<string> {\n let crypto = await import('crypto');\n let md5 = crypto.createHash('md5');\n md5.update(content);\n let hash = md5.digest('hex');\n let fileParts = filename.split('.');\n fileParts.splice(fileParts.length - 1, 0, hash);\n return fileParts.join('.');\n }\n\n transformHTML(htmlIn: string, baseUrl: string) {\n if (this.transformState?.htmlIn !== htmlIn) {\n let parsed = new JSDOM(htmlIn);\n let linkTags = [...parsed.window.document.querySelectorAll('link')] as HTMLLinkElement[];\n for (const linkTag of linkTags) {\n if (linkTag.href.startsWith('/@embroider/virtual')) {\n linkTag.href = baseUrl + linkTag.href.slice(1);\n }\n }\n let scriptTags = [...parsed.window.document.querySelectorAll('script')] as HTMLScriptElement[];\n for (let scriptTag of scriptTags) {\n if (scriptTag.type !== 'module') {\n let fingerprinted = this.emitted.get(scriptTag.src);\n if (fingerprinted) {\n scriptTag.src = fingerprinted;\n }\n if (scriptTag.src.startsWith('/@embroider/virtual')) {\n scriptTag.src = baseUrl + scriptTag.src.slice(1);\n }\n }\n }\n let htmlOut = parsed.serialize();\n this.transformState = { htmlIn, parsed, htmlOut };\n }\n return this.transformState.htmlOut;\n }\n}\n"]}
|
|
1
|
+
{"version":3,"file":"scripts.js","sourceRoot":"","sources":["../../src/scripts.ts"],"names":[],"mappings":"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","sourcesContent":["import type { Plugin } from 'vite';\nimport type { EmittedFile } from 'rollup';\nimport { JSDOM } from 'jsdom';\nimport fs from 'fs-extra';\nconst { readFileSync, readJSONSync, existsSync } = fs;\nimport { dirname, posix, resolve } from 'path';\n\n// This is a type-only import, so it gets compiled away. At runtime, we load\n// terser lazily so it's only loaded for production builds that use it. Don't\n// add any non-type-only imports here.\nimport type { MinifyOptions } from 'terser';\n\nconst defaults = ['/assets/vendor.js', '/assets/test-support.js'];\n\nexport function scripts(params?: { include?: string[]; exclude?: string[] }): Plugin {\n let optimizer: ScriptOptimizer;\n\n // configured names are always interpreted as origin-absolute URLs.\n let names = (params?.include ?? defaults)\n .filter(name => !params?.exclude?.includes(name))\n .map(name => {\n if (name.startsWith('/')) {\n return name;\n } else {\n return '/' + name;\n }\n });\n\n let config: any = null;\n\n return {\n name: 'embroider-scripts',\n enforce: 'pre',\n\n configResolved(resolvedConfig) {\n config = resolvedConfig;\n optimizer = new ScriptOptimizer(resolvedConfig.root);\n },\n\n async generateBundle() {\n // this hook only runs in `vite build`\n for (let name of names) {\n for (let file of await optimizer.optimizedScript(name)) {\n // @ts-expect-error rolldowns types seem to have a few issues 🤔\n this.emitFile(file);\n }\n }\n },\n\n transformIndexHtml(htmlIn, context) {\n // we don't do anything in `vite dev`, we only need to work in `vite\n // build`\n if (!context.server) {\n return optimizer.transformHTML(htmlIn, config.base);\n }\n },\n };\n}\n\nclass ScriptOptimizer {\n private emitted = new Map<string, string>();\n private transformState:\n | {\n htmlIn: string;\n htmlOut: string;\n parsed: JSDOM;\n }\n | undefined;\n\n constructor(private rootDir: string) {}\n\n async optimizedScript(script: string): Promise<EmittedFile[]> {\n let fullName = resolve(this.rootDir, script.slice(1));\n if (!existsSync(fullName)) {\n // in prod builds, test-support.js isn't going to exist (for example)\n return [];\n }\n\n // loading these lazily here so they never load in non-production builds.\n // The node cache will ensures we only load them once.\n const [Terser, srcURL] = await Promise.all([import('terser'), import('source-map-url')]);\n\n let inCode = readFileSync(fullName, 'utf8');\n let terserOpts: MinifyOptions = {};\n let fileRelativeSourceMapURL;\n let appRelativeSourceMapURL;\n if (srcURL.default.existsIn(inCode)) {\n fileRelativeSourceMapURL = srcURL.default.getFrom(inCode)!;\n appRelativeSourceMapURL = posix.join(dirname(script.slice(1)), fileRelativeSourceMapURL);\n let content;\n try {\n content = readJSONSync(resolve(this.rootDir, appRelativeSourceMapURL));\n } catch (err) {\n // the script refers to a sourcemap that doesn't exist, so we just leave\n // the map out.\n }\n if (content) {\n terserOpts.sourceMap = { content, url: fileRelativeSourceMapURL };\n }\n }\n let { code: outCode, map: outMap } = await Terser.minify(inCode, terserOpts);\n let finalFilename = await this.getFingerprintedFilename(script, outCode!);\n let emit: EmittedFile[] = [];\n emit.push({\n type: 'asset',\n fileName: finalFilename.slice(1),\n source: outCode!,\n });\n this.emitted.set(script, finalFilename);\n if (appRelativeSourceMapURL && outMap) {\n emit.push({\n type: 'asset',\n fileName: appRelativeSourceMapURL,\n source: JSON.stringify(outMap, null, 2),\n });\n }\n return emit;\n }\n\n async getFingerprintedFilename(filename: string, content: string): Promise<string> {\n let crypto = await import('crypto');\n let md5 = crypto.createHash('md5');\n md5.update(content);\n let hash = md5.digest('hex');\n let fileParts = filename.split('.');\n fileParts.splice(fileParts.length - 1, 0, hash);\n return fileParts.join('.');\n }\n\n transformHTML(htmlIn: string, baseUrl: string) {\n if (this.transformState?.htmlIn !== htmlIn) {\n let parsed = new JSDOM(htmlIn);\n let linkTags = [...parsed.window.document.querySelectorAll('link')] as HTMLLinkElement[];\n for (const linkTag of linkTags) {\n if (linkTag.href.startsWith('/@embroider/virtual')) {\n linkTag.href = baseUrl + linkTag.href.slice(1);\n }\n }\n let scriptTags = [...parsed.window.document.querySelectorAll('script')] as HTMLScriptElement[];\n for (let scriptTag of scriptTags) {\n if (scriptTag.type !== 'module') {\n let fingerprinted = this.emitted.get(scriptTag.src);\n if (fingerprinted) {\n scriptTag.src = fingerprinted;\n }\n if (scriptTag.src.startsWith('/@embroider/virtual')) {\n scriptTag.src = baseUrl + scriptTag.src.slice(1);\n }\n }\n }\n let htmlOut = parsed.serialize();\n this.transformState = { htmlIn, parsed, htmlOut };\n }\n return this.transformState.htmlOut;\n }\n}\n"]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"fileNames":["../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.dom.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.scripthost.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2019.full.d.ts","../../core/dist/src/packager.d.ts","../../core/dist/src/html-entrypoint.d.ts","../../../node_modules/.pnpm/broccoli-node-api@1.7.0/node_modules/broccoli-node-api/index.d.ts","../../core/dist/src/stage.d.ts","../../core/dist/src/options.d.ts","../../../node_modules/.pnpm/broccoli-plugin@4.0.7/node_modules/broccoli-plugin/dist/interfaces.d.ts","../../../node_modules/.pnpm/@types+node@22.13.17/node_modules/@types/node/compatibility/disposable.d.ts","../../../node_modules/.pnpm/@types+node@22.13.17/node_modules/@types/node/compatibility/indexable.d.ts","../../../node_modules/.pnpm/@types+node@22.13.17/node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/.pnpm/@types+node@22.13.17/node_modules/@types/node/compatibility/index.d.ts","../../../node_modules/.pnpm/@types+node@22.13.17/node_modules/@types/node/globals.typedarray.d.ts","../../../node_modules/.pnpm/@types+node@22.13.17/node_modules/@types/node/buffer.buffer.d.ts","../../../node_modules/.pnpm/buffer@5.7.1/node_modules/buffer/index.d.ts","../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/header.d.ts","../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/readable.d.ts","../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/file.d.ts","../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/fetch.d.ts","../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/formdata.d.ts","../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/connector.d.ts","../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/client.d.ts","../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/errors.d.ts","../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/global-origin.d.ts","../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/pool-stats.d.ts","../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/pool.d.ts","../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/handlers.d.ts","../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/agent.d.ts","../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/mock-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/mock-client.d.ts","../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/mock-pool.d.ts","../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/mock-errors.d.ts","../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/retry-handler.d.ts","../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/retry-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/api.d.ts","../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/interceptors.d.ts","../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/util.d.ts","../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/cookies.d.ts","../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/patch.d.ts","../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/websocket.d.ts","../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/eventsource.d.ts","../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/filereader.d.ts","../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/content-type.d.ts","../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/cache.d.ts","../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/index.d.ts","../../../node_modules/.pnpm/@types+node@22.13.17/node_modules/@types/node/globals.d.ts","../../../node_modules/.pnpm/@types+node@22.13.17/node_modules/@types/node/assert.d.ts","../../../node_modules/.pnpm/@types+node@22.13.17/node_modules/@types/node/assert/strict.d.ts","../../../node_modules/.pnpm/@types+node@22.13.17/node_modules/@types/node/async_hooks.d.ts","../../../node_modules/.pnpm/@types+node@22.13.17/node_modules/@types/node/buffer.d.ts","../../../node_modules/.pnpm/@types+node@22.13.17/node_modules/@types/node/child_process.d.ts","../../../node_modules/.pnpm/@types+node@22.13.17/node_modules/@types/node/cluster.d.ts","../../../node_modules/.pnpm/@types+node@22.13.17/node_modules/@types/node/console.d.ts","../../../node_modules/.pnpm/@types+node@22.13.17/node_modules/@types/node/constants.d.ts","../../../node_modules/.pnpm/@types+node@22.13.17/node_modules/@types/node/crypto.d.ts","../../../node_modules/.pnpm/@types+node@22.13.17/node_modules/@types/node/dgram.d.ts","../../../node_modules/.pnpm/@types+node@22.13.17/node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/.pnpm/@types+node@22.13.17/node_modules/@types/node/dns.d.ts","../../../node_modules/.pnpm/@types+node@22.13.17/node_modules/@types/node/dns/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.13.17/node_modules/@types/node/domain.d.ts","../../../node_modules/.pnpm/@types+node@22.13.17/node_modules/@types/node/dom-events.d.ts","../../../node_modules/.pnpm/@types+node@22.13.17/node_modules/@types/node/events.d.ts","../../../node_modules/.pnpm/@types+node@22.13.17/node_modules/@types/node/fs.d.ts","../../../node_modules/.pnpm/@types+node@22.13.17/node_modules/@types/node/fs/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.13.17/node_modules/@types/node/http.d.ts","../../../node_modules/.pnpm/@types+node@22.13.17/node_modules/@types/node/http2.d.ts","../../../node_modules/.pnpm/@types+node@22.13.17/node_modules/@types/node/https.d.ts","../../../node_modules/.pnpm/@types+node@22.13.17/node_modules/@types/node/inspector.d.ts","../../../node_modules/.pnpm/@types+node@22.13.17/node_modules/@types/node/module.d.ts","../../../node_modules/.pnpm/@types+node@22.13.17/node_modules/@types/node/net.d.ts","../../../node_modules/.pnpm/@types+node@22.13.17/node_modules/@types/node/os.d.ts","../../../node_modules/.pnpm/@types+node@22.13.17/node_modules/@types/node/path.d.ts","../../../node_modules/.pnpm/@types+node@22.13.17/node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/.pnpm/@types+node@22.13.17/node_modules/@types/node/process.d.ts","../../../node_modules/.pnpm/@types+node@22.13.17/node_modules/@types/node/punycode.d.ts","../../../node_modules/.pnpm/@types+node@22.13.17/node_modules/@types/node/querystring.d.ts","../../../node_modules/.pnpm/@types+node@22.13.17/node_modules/@types/node/readline.d.ts","../../../node_modules/.pnpm/@types+node@22.13.17/node_modules/@types/node/readline/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.13.17/node_modules/@types/node/repl.d.ts","../../../node_modules/.pnpm/@types+node@22.13.17/node_modules/@types/node/sea.d.ts","../../../node_modules/.pnpm/@types+node@22.13.17/node_modules/@types/node/sqlite.d.ts","../../../node_modules/.pnpm/@types+node@22.13.17/node_modules/@types/node/stream.d.ts","../../../node_modules/.pnpm/@types+node@22.13.17/node_modules/@types/node/stream/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.13.17/node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/.pnpm/@types+node@22.13.17/node_modules/@types/node/stream/web.d.ts","../../../node_modules/.pnpm/@types+node@22.13.17/node_modules/@types/node/string_decoder.d.ts","../../../node_modules/.pnpm/@types+node@22.13.17/node_modules/@types/node/test.d.ts","../../../node_modules/.pnpm/@types+node@22.13.17/node_modules/@types/node/timers.d.ts","../../../node_modules/.pnpm/@types+node@22.13.17/node_modules/@types/node/timers/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.13.17/node_modules/@types/node/tls.d.ts","../../../node_modules/.pnpm/@types+node@22.13.17/node_modules/@types/node/trace_events.d.ts","../../../node_modules/.pnpm/@types+node@22.13.17/node_modules/@types/node/tty.d.ts","../../../node_modules/.pnpm/@types+node@22.13.17/node_modules/@types/node/url.d.ts","../../../node_modules/.pnpm/@types+node@22.13.17/node_modules/@types/node/util.d.ts","../../../node_modules/.pnpm/@types+node@22.13.17/node_modules/@types/node/v8.d.ts","../../../node_modules/.pnpm/@types+node@22.13.17/node_modules/@types/node/vm.d.ts","../../../node_modules/.pnpm/@types+node@22.13.17/node_modules/@types/node/wasi.d.ts","../../../node_modules/.pnpm/@types+node@22.13.17/node_modules/@types/node/worker_threads.d.ts","../../../node_modules/.pnpm/@types+node@22.13.17/node_modules/@types/node/zlib.d.ts","../../../node_modules/.pnpm/@types+node@22.13.17/node_modules/@types/node/index.d.ts","../../../node_modules/.pnpm/broccoli-output-wrapper@3.2.5/node_modules/broccoli-output-wrapper/dist/index.d.ts","../../../node_modules/.pnpm/@types+minimatch@3.0.5/node_modules/@types/minimatch/index.d.ts","../../../node_modules/.pnpm/walk-sync@2.2.0/node_modules/walk-sync/index.d.ts","../../../node_modules/.pnpm/fs-merger@3.2.1/node_modules/fs-merger/dist/index.d.ts","../../../node_modules/.pnpm/broccoli-plugin@4.0.7/node_modules/broccoli-plugin/dist/index.d.ts","../../core/dist/src/wait-for-trees.d.ts","../../core/dist/src/js-handlebars.d.ts","../../../node_modules/.pnpm/@types+ms@2.1.0/node_modules/@types/ms/index.d.ts","../../../node_modules/.pnpm/@types+debug@4.1.12/node_modules/@types/debug/index.d.ts","../../core/dist/src/messages.d.ts","../../shared-internals/src/metadata.ts","../../../node_modules/.pnpm/typescript-memoize@1.1.1/node_modules/typescript-memoize/dist/memoize-decorator.d.ts","../../../node_modules/.pnpm/@types+fs-extra@9.0.13/node_modules/@types/fs-extra/index.d.ts","../../../node_modules/.pnpm/@types+lodash@4.17.16/node_modules/@types/lodash/common/common.d.ts","../../../node_modules/.pnpm/@types+lodash@4.17.16/node_modules/@types/lodash/common/array.d.ts","../../../node_modules/.pnpm/@types+lodash@4.17.16/node_modules/@types/lodash/common/collection.d.ts","../../../node_modules/.pnpm/@types+lodash@4.17.16/node_modules/@types/lodash/common/date.d.ts","../../../node_modules/.pnpm/@types+lodash@4.17.16/node_modules/@types/lodash/common/function.d.ts","../../../node_modules/.pnpm/@types+lodash@4.17.16/node_modules/@types/lodash/common/lang.d.ts","../../../node_modules/.pnpm/@types+lodash@4.17.16/node_modules/@types/lodash/common/math.d.ts","../../../node_modules/.pnpm/@types+lodash@4.17.16/node_modules/@types/lodash/common/number.d.ts","../../../node_modules/.pnpm/@types+lodash@4.17.16/node_modules/@types/lodash/common/object.d.ts","../../../node_modules/.pnpm/@types+lodash@4.17.16/node_modules/@types/lodash/common/seq.d.ts","../../../node_modules/.pnpm/@types+lodash@4.17.16/node_modules/@types/lodash/common/string.d.ts","../../../node_modules/.pnpm/@types+lodash@4.17.16/node_modules/@types/lodash/common/util.d.ts","../../../node_modules/.pnpm/@types+lodash@4.17.16/node_modules/@types/lodash/index.d.ts","../../../node_modules/.pnpm/@types+lodash@4.17.16/node_modules/@types/lodash/get.d.ts","../../shared-internals/src/get-or-create.ts","../../../node_modules/.pnpm/resolve-package-path@4.0.3/node_modules/resolve-package-path/lib/cache.d.ts","../../../node_modules/.pnpm/resolve-package-path@4.0.3/node_modules/resolve-package-path/lib/cache-group.d.ts","../../../node_modules/.pnpm/resolve-package-path@4.0.3/node_modules/resolve-package-path/lib/index.d.ts","../../shared-internals/src/package-cache.ts","../../../node_modules/.pnpm/@types+lodash@4.17.16/node_modules/@types/lodash/flatMap.d.ts","../../shared-internals/src/package.ts","../../shared-internals/src/paths.ts","../../shared-internals/src/working-dir.ts","../../shared-internals/src/rewritten-package-cache.ts","../../shared-internals/src/package-name.ts","../../shared-internals/src/tmpdir.ts","../../../types/broccoli-funnel/index.d.ts","../../shared-internals/src/ember-cli-models.ts","../../shared-internals/src/ember-standard-modules.ts","../../../node_modules/.pnpm/@types+js-string-escape@1.0.3/node_modules/@types/js-string-escape/index.d.ts","../../shared-internals/src/hbs-to-js.ts","../../../node_modules/.pnpm/@babel+types@7.27.0/node_modules/@babel/types/lib/index.d.ts","../../../node_modules/.pnpm/@types+babel__traverse@7.20.7/node_modules/@types/babel__traverse/index.d.ts","../../../node_modules/.pnpm/@types+babel__generator@7.6.8/node_modules/@types/babel__generator/index.d.ts","../../../node_modules/.pnpm/@babel+parser@7.27.0/node_modules/@babel/parser/typings/babel-parser.d.ts","../../../node_modules/.pnpm/@types+babel__template@7.4.4/node_modules/@types/babel__template/index.d.ts","../../../node_modules/.pnpm/@types+babel__core@7.20.5/node_modules/@types/babel__core/index.d.ts","../../../node_modules/.pnpm/babel-import-util@3.0.1/node_modules/babel-import-util/src/index.d.ts","../../shared-internals/src/template-colocation-plugin.ts","../../shared-internals/src/babel-plugin-cache-busting.ts","../../shared-internals/src/dep-validation.ts","../../../node_modules/.pnpm/resolve.exports@2.0.3/node_modules/resolve.exports/index.d.ts","../../shared-internals/src/colocation.ts","../../../node_modules/.pnpm/is-subdir@1.2.0/node_modules/is-subdir/index.d.ts","../../../node_modules/.pnpm/pkg-entry-points@1.1.1/node_modules/pkg-entry-points/dist/index.d.cts","../../shared-internals/src/watch-utils.ts","../../shared-internals/src/index.ts","../../core/dist/src/virtual-test-support.d.ts","../../core/dist/src/virtual-test-support-styles.d.ts","../../core/dist/src/virtual-vendor.d.ts","../../core/dist/src/virtual-vendor-styles.d.ts","../../core/dist/src/app-files.d.ts","../../core/dist/src/virtual-entrypoint.d.ts","../../core/dist/src/virtual-route-entrypoint.d.ts","../../core/dist/src/virtual-content.d.ts","../../core/dist/src/module-request.d.ts","../../core/dist/src/node-resolve.d.ts","../../core/dist/src/module-resolver-options.d.ts","../../core/dist/src/module-resolver.d.ts","../../core/dist/src/resolver-loader.d.ts","../../core/dist/src/index.d.ts","../../../node_modules/.pnpm/@types+estree@1.0.7/node_modules/@types/estree/index.d.ts","../../../node_modules/.pnpm/rollup@4.38.0/node_modules/rollup/dist/rollup.d.ts","../../../node_modules/.pnpm/rollup@4.38.0/node_modules/rollup/dist/parseAst.d.ts","../../../node_modules/.pnpm/vite@6.2.4_terser@5.39.0/node_modules/vite/types/hmrPayload.d.ts","../../../node_modules/.pnpm/vite@6.2.4_terser@5.39.0/node_modules/vite/types/customEvent.d.ts","../../../node_modules/.pnpm/vite@6.2.4_terser@5.39.0/node_modules/vite/types/hot.d.ts","../../../node_modules/.pnpm/vite@6.2.4_terser@5.39.0/node_modules/vite/dist/node/moduleRunnerTransport.d-CXw_Ws6P.d.ts","../../../node_modules/.pnpm/vite@6.2.4_terser@5.39.0/node_modules/vite/dist/node/module-runner.d.ts","../../../node_modules/.pnpm/esbuild@0.25.2/node_modules/esbuild/lib/main.d.ts","../../../node_modules/.pnpm/source-map-js@1.2.1/node_modules/source-map-js/source-map.d.ts","../../../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/previous-map.d.ts","../../../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/input.d.ts","../../../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/css-syntax-error.d.ts","../../../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/declaration.d.ts","../../../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/root.d.ts","../../../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/warning.d.ts","../../../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/lazy-result.d.ts","../../../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/no-work-result.d.ts","../../../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/processor.d.ts","../../../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/result.d.ts","../../../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/document.d.ts","../../../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/rule.d.ts","../../../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/node.d.ts","../../../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/comment.d.ts","../../../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/container.d.ts","../../../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/at-rule.d.ts","../../../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/list.d.ts","../../../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/postcss.d.ts","../../../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/postcss.d.mts","../../../node_modules/.pnpm/vite@6.2.4_terser@5.39.0/node_modules/vite/types/internal/lightningcssOptions.d.ts","../../../node_modules/.pnpm/vite@6.2.4_terser@5.39.0/node_modules/vite/types/internal/cssPreprocessorOptions.d.ts","../../../node_modules/.pnpm/vite@6.2.4_terser@5.39.0/node_modules/vite/types/importGlob.d.ts","../../../node_modules/.pnpm/vite@6.2.4_terser@5.39.0/node_modules/vite/types/metadata.d.ts","../../../node_modules/.pnpm/vite@6.2.4_terser@5.39.0/node_modules/vite/dist/node/index.d.ts","../../../node_modules/.pnpm/@types+mime@1.3.5/node_modules/@types/mime/index.d.ts","../../../node_modules/.pnpm/@types+send@0.17.4/node_modules/@types/send/index.d.ts","../src/assets.ts","../src/backchannel.ts","../src/build-once.ts","../src/build.ts","../../../node_modules/.pnpm/@rollup+pluginutils@5.1.4_rollup@4.38.0/node_modules/@rollup/pluginutils/types/index.d.ts","../src/hbs.ts","../../../node_modules/.pnpm/@types+parse5@6.0.3/node_modules/@types/parse5/lib/tree-adapters/default.d.ts","../../../node_modules/.pnpm/@types+parse5@6.0.3/node_modules/@types/parse5/index.d.ts","../../../node_modules/.pnpm/@types+tough-cookie@4.0.5/node_modules/@types/tough-cookie/index.d.ts","../../../node_modules/.pnpm/@types+jsdom@16.2.15/node_modules/@types/jsdom/base.d.ts","../../../node_modules/.pnpm/@types+jsdom@16.2.15/node_modules/@types/jsdom/ts4.0/index.d.ts","../../../node_modules/.pnpm/@types+jsdom@16.2.15/node_modules/@types/jsdom/index.d.ts","../../../node_modules/.pnpm/@jridgewell+trace-mapping@0.3.25/node_modules/@jridgewell/trace-mapping/dist/types/sourcemap-segment.d.ts","../../../node_modules/.pnpm/@jridgewell+trace-mapping@0.3.25/node_modules/@jridgewell/trace-mapping/dist/types/types.d.ts","../../../node_modules/.pnpm/@jridgewell+trace-mapping@0.3.25/node_modules/@jridgewell/trace-mapping/dist/types/any-map.d.ts","../../../node_modules/.pnpm/@jridgewell+trace-mapping@0.3.25/node_modules/@jridgewell/trace-mapping/dist/types/trace-mapping.d.ts","../../../node_modules/.pnpm/@jridgewell+gen-mapping@0.3.8/node_modules/@jridgewell/gen-mapping/dist/types/sourcemap-segment.d.ts","../../../node_modules/.pnpm/@jridgewell+gen-mapping@0.3.8/node_modules/@jridgewell/gen-mapping/dist/types/types.d.ts","../../../node_modules/.pnpm/@jridgewell+gen-mapping@0.3.8/node_modules/@jridgewell/gen-mapping/dist/types/gen-mapping.d.ts","../../../node_modules/.pnpm/@jridgewell+source-map@0.3.6/node_modules/@jridgewell/source-map/dist/types/source-map.d.ts","../../../node_modules/.pnpm/terser@5.39.0/node_modules/terser/tools/terser.d.ts","../src/scripts.ts","../src/content-for.ts","../../../node_modules/.pnpm/browserslist@4.24.4/node_modules/browserslist/index.d.ts","../../../node_modules/.pnpm/browserslist-to-esbuild@2.1.1_browserslist@4.24.4/node_modules/browserslist-to-esbuild/src/index.d.ts","../src/classic-ember-support.ts","../../../node_modules/.pnpm/content-tag@3.1.2/node_modules/content-tag/index.d.cts","../src/template-tag.ts","../src/request.ts","../../../node_modules/.pnpm/assert-never@1.4.0/node_modules/assert-never/index.d.ts","../../reverse-exports/dist/src/index.d.ts","../src/resolver.ts","../src/esbuild-request.ts","../src/esbuild-resolver.ts","../src/ember.ts","../src/optimize-deps.ts","../index.ts","../../../types/broccoli/index.d.ts","../../../types/broccoli-concat/index.d.ts","../../../types/broccoli-file-creator/index.d.ts","../../../types/broccoli-merge-trees/index.d.ts","../../../types/console-ui/index.d.ts","../../../types/ember-cli/index.d.ts","../../../types/fast-sourcemap-concat/index.d.ts","../../../types/source-map-url/index.d.ts","../../../types/thread-loader/index.d.ts","../../../node_modules/.pnpm/@types+eslint@8.56.12/node_modules/@types/eslint/helpers.d.ts","../../../node_modules/.pnpm/@types+json-schema@7.0.15/node_modules/@types/json-schema/index.d.ts","../../../node_modules/.pnpm/@types+eslint@8.56.12/node_modules/@types/eslint/index.d.ts","../../../node_modules/.pnpm/@types+eslint-scope@3.7.7/node_modules/@types/eslint-scope/index.d.ts","../../../node_modules/.pnpm/@jest+expect-utils@29.7.0/node_modules/@jest/expect-utils/build/index.d.ts","../../../node_modules/.pnpm/chalk@4.1.2/node_modules/chalk/index.d.ts","../../../node_modules/.pnpm/@sinclair+typebox@0.27.8/node_modules/@sinclair/typebox/typebox.d.ts","../../../node_modules/.pnpm/@jest+schemas@29.6.3/node_modules/@jest/schemas/build/index.d.ts","../../../node_modules/.pnpm/pretty-format@29.7.0/node_modules/pretty-format/build/index.d.ts","../../../node_modules/.pnpm/jest-diff@29.7.0/node_modules/jest-diff/build/index.d.ts","../../../node_modules/.pnpm/jest-matcher-utils@29.7.0/node_modules/jest-matcher-utils/build/index.d.ts","../../../node_modules/.pnpm/expect@29.7.0/node_modules/expect/build/index.d.ts","../../../node_modules/.pnpm/@types+jest@29.5.14/node_modules/@types/jest/index.d.ts"],"fileIdsList":[[63,106,201,276,277,278],[63,106,276,277,278],[63,106,276,277,278,319],[63,106,276,277,278,282,284],[63,106,276,277,278,283],[63,106,276,277,278,282,285],[63,106,276,277,278,280,282],[63,106,276,277,278,279,280,281],[63,106,276,277,278,279,282],[63,106,231,232,276,277,278],[63,106,201,202,203,204,205,276,277,278],[63,106,201,204,276,277,278],[63,106,164,276,277,278],[63,106,231,232,276,277,278,315],[63,106,231,232,276,277,278,313,314],[63,106,119,156,276,277,278],[63,106,276,277,278,321,324],[63,106,118,152,156,274,275,277,278],[63,106,276,277],[63,106,276,278],[63,106,170,172,173,174,175,176,177,178,179,180,181,182,276,277,278],[63,106,170,171,173,174,175,176,177,178,179,180,181,182,276,277,278],[63,106,171,172,173,174,175,176,177,178,179,180,181,182,276,277,278],[63,106,170,171,172,174,175,176,177,178,179,180,181,182,276,277,278],[63,106,170,171,172,173,175,176,177,178,179,180,181,182,276,277,278],[63,106,170,171,172,173,174,176,177,178,179,180,181,182,276,277,278],[63,106,170,171,172,173,174,175,177,178,179,180,181,182,276,277,278],[63,106,170,171,172,173,174,175,176,178,179,180,181,182,276,277,278],[63,106,170,171,172,173,174,175,176,177,179,180,181,182,276,277,278],[63,106,170,171,172,173,174,175,176,177,178,180,181,182,276,277,278],[63,106,170,171,172,173,174,175,176,177,178,179,181,182,276,277,278],[63,106,170,171,172,173,174,175,176,177,178,179,180,182,276,277,278],[63,106,182,276,277,278],[63,106,170,171,172,173,174,175,176,177,178,179,180,181,276,277,278],[63,103,106,276,277,278],[63,105,106,276,277,278],[106,276,277,278],[63,106,111,141,276,277,278],[63,106,107,112,118,119,126,138,149,276,277,278],[63,106,107,108,118,126,276,277,278],[58,59,60,63,106,276,277,278],[63,106,109,150,276,277,278],[63,106,110,111,119,127,276,277,278],[63,106,111,138,146,276,277,278],[63,106,112,114,118,126,276,277,278],[63,105,106,113,276,277,278],[63,106,114,115,276,277,278],[63,106,118,276,277,278],[63,106,116,118,276,277,278],[63,105,106,118,276,277,278],[63,106,118,119,120,138,149,276,277,278],[63,106,118,119,120,133,138,141,276,277,278],[63,101,106,154,276,277,278],[63,101,106,114,118,121,126,138,149,276,277,278],[63,106,118,119,121,122,126,138,146,149,276,277,278],[63,106,121,123,138,146,149,276,277,278],[61,62,63,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,276,277,278],[63,106,118,124,276,277,278],[63,106,125,149,276,277,278],[63,106,114,118,126,138,276,277,278],[63,106,127,276,277,278],[63,106,128,276,277,278],[63,105,106,129,276,277,278],[63,103,104,105,106,107,108,109,110,111,112,113,114,115,116,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,276,277,278],[63,106,131,276,277,278],[63,106,132,276,277,278],[63,106,118,133,134,276,277,278],[63,106,133,135,150,152,276,277,278],[63,106,118,138,139,141,276,277,278],[63,106,140,141,276,277,278],[63,106,138,139,276,277,278],[63,106,141,276,277,278],[63,106,142,276,277,278],[63,103,106,138,276,277,278],[63,106,118,144,145,276,277,278],[63,106,144,145,276,277,278],[63,106,111,126,138,146,276,277,278],[63,106,147,276,277,278],[63,106,126,148,276,277,278],[63,106,121,132,149,276,277,278],[63,106,111,150,276,277,278],[63,106,138,151,276,277,278],[63,106,125,152,276,277,278],[63,106,153,276,277,278],[63,106,111,118,120,129,138,149,152,154,276,277,278],[63,106,138,155,276,277,278],[63,106,273,276,277,278],[63,106,274,276,277,278],[63,106,119,138,156,265,276,277,278],[63,106,206,276,277,278],[54,57,63,106,157,160,276,277,278],[63,106,276,277,278,290],[63,106,276,277,278,317,323],[54,63,106,119,156,159,276,277,278],[63,106,276,277,278,321],[63,106,276,277,278,318,322],[63,106,119,276,277,278],[63,106,255,276,277,278],[63,106,253,255,276,277,278],[63,106,244,252,253,254,256,276,277,278],[63,106,242,276,277,278],[63,106,245,250,255,258,276,277,278],[63,106,241,258,276,277,278],[63,106,245,246,249,250,251,258,276,277,278],[63,106,245,246,247,249,250,258,276,277,278],[63,106,242,243,244,245,246,250,251,252,254,255,256,258,276,277,278],[63,106,258,276,277,278],[63,106,240,242,243,244,245,246,247,249,250,251,252,253,254,255,256,257,276,277,278],[63,106,240,258,276,277,278],[63,106,245,247,248,250,251,258,276,277,278],[63,106,249,258,276,277,278],[63,106,250,251,255,258,276,277,278],[63,106,243,253,276,277,278],[63,106,276,277,278,320],[63,106,185,276,277,278],[63,106,185,186,276,277,278],[63,106,232,263,264,276,277,278],[63,106,276,277,278,286],[63,73,77,106,149,276,277,278],[63,73,106,138,149,276,277,278],[63,68,106,276,277,278],[63,70,73,106,146,149,276,277,278],[63,106,126,146,276,277,278],[63,106,156,276,277,278],[63,68,106,156,276,277,278],[63,70,73,106,126,149,276,277,278],[63,65,66,69,72,106,118,138,149,276,277,278],[63,73,80,106,276,277,278],[63,65,71,106,276,277,278],[63,73,94,95,106,276,277,278],[63,69,73,106,141,149,156,276,277,278],[63,94,106,156,276,277,278],[63,67,68,106,156,276,277,278],[63,73,106,276,277,278],[63,67,68,69,70,71,72,73,74,75,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,95,96,97,98,99,100,106,276,277,278],[63,73,88,106,276,277,278],[63,73,80,81,106,276,277,278],[63,71,73,81,82,106,276,277,278],[63,72,106,276,277,278],[63,65,68,73,106,276,277,278],[63,73,77,81,82,106,276,277,278],[63,77,106,276,277,278],[63,71,73,76,106,149,276,277,278],[63,65,70,73,80,106,276,277,278],[63,106,138,276,277,278],[63,68,73,94,106,154,156,276,277,278],[63,106,118,119,121,122,123,126,138,146,149,155,156,232,233,234,235,237,238,239,259,260,261,262,263,264,276,277,278],[63,106,234,235,236,237,276,277,278],[63,106,234,276,277,278],[63,106,235,276,277,278],[63,106,232,264,276,277,278],[63,106,119,156,158,276,277,278],[63,106,216,276,277,278],[52,63,106,276,277,278],[52,53,55,56,63,106,162,163,166,216,221,224,225,227,228,229,276,277,278],[63,106,165,276,277,278],[63,106,224,276,277,278],[63,106,216,225,226,227,276,277,278],[63,106,224,225,228,276,277,278],[63,106,228,276,277,278],[54,63,106,276,277,278],[63,106,217,218,219,220,222,223,230,276,277,278],[63,106,221,228,276,277,278],[63,106,224,228,276,277,278],[54,63,106,161,276,277,278],[63,106,169,276,277,278],[63,106,128,169,188,191,211,276,277,278],[63,106,190,276,277,278],[54,63,106,167,196,276,277,278],[63,106,128,199,276,277,278],[63,106,167,184,188,190,191,192,193,194,195,197,198,200,208,209,210,212,215,276,277,278],[63,106,119,128,184,187,190,276,277,278],[63,106,128,167,168,169,183,188,189,276,277,278],[63,106,128,190,276,277,278],[63,106,128,169,184,188,190,192,276,277,278],[63,106,119,128,158,165,191,202,206,207,216,276,277,278],[63,106,127,169,276,277,278],[63,106,128,213,214,276,277,278],[63,106,119,128,169,276,277,278],[63,106,267,269,270,272,276,277,278,288,289,292,294,298,300,301,302],[63,106,128,130,169,230,264,266,276,277,278],[63,106,107,276,277,278],[63,106,107,125,128,264,276,277,278],[63,106,119,128,149,267,270,272,276,277,278,288,289,291],[63,106,128,169,230,264,276,277,278],[63,106,264,276,277,278,294,298,300],[63,106,128,230,239,268,276,277,278,296,297],[63,106,128,169,206,230,239,268,276,277,278,293,296,299],[63,106,230,232,263,264,271,276,277,278],[63,106,276,277,278,300],[63,106,128,230,232,263,264,276,277,278],[63,106,111,128,165,169,230,232,263,264,268,276,277,278,295,296,297],[63,106,111,128,169,232,263,264,276,277,278,287,311],[63,106,264,271,276,277,278,293],[63,106,161,276,277,278]],"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":"092c2bfe125ce69dbb1223c85d68d4d2397d7d8411867b5cc03cec902c233763","affectsGlobalScope":true,"impliedFormat":1},{"version":"07f073f19d67f74d732b1adea08e1dc66b1b58d77cb5b43931dee3d798a2fd53","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7a3c8b952931daebdfc7a2897c53c0a1c73624593fa070e46bd537e64dcd20a","affectsGlobalScope":true,"impliedFormat":1},{"version":"80e18897e5884b6723488d4f5652167e7bb5024f946743134ecc4aa4ee731f89","affectsGlobalScope":true,"impliedFormat":1},{"version":"cd034f499c6cdca722b60c04b5b1b78e058487a7085a8e0d6fb50809947ee573","affectsGlobalScope":true,"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":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"08f6861df84fba9719c14d5adc3ba40be9f0c687639e6c4df3c05b9301b8ff94","impliedFormat":1},{"version":"8cacf8ff57f2abccde586ca6b2ad0d5b6aa805f1e05d648016a699c4d34e7e33","impliedFormat":1},{"version":"792dfbb0cff6fc2ea09ccfe0e2edc66e05b4b0b86f77195d8d3b946423f853e5","impliedFormat":1},{"version":"d7080e710749d451754bdd05701a2d9b9c04b31aaca1afdc798f6b49e1e6ba54","impliedFormat":1},{"version":"22e9daef6c13ef229200e88e58732e6d977dfdf1328a4af72b9305f46b6b89d4","impliedFormat":1},{"version":"028b7d52179b04ec4b8e4967e4828fdc66c9d8e3e9c103e5321c3610c3a61dd0","impliedFormat":1},{"version":"4a91fa7370259a7be029b46233de8309646395443f1f0d90639dab3d6f58bc9b","impliedFormat":1},{"version":"70521b6ab0dcba37539e5303104f29b721bfb2940b2776da4cc818c07e1fefc1","affectsGlobalScope":true,"impliedFormat":1},{"version":"030e350db2525514580ed054f712ffb22d273e6bc7eddc1bb7eda1e0ba5d395e","affectsGlobalScope":true,"impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"a79e62f1e20467e11a904399b8b18b18c0c6eea6b50c1168bf215356d5bebfaf","affectsGlobalScope":true,"impliedFormat":1},{"version":"8fa51737611c21ba3a5ac02c4e1535741d58bec67c9bdf94b1837a31c97a2263","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"24bd580b5743dc56402c440dc7f9a4f5d592ad7a419f25414d37a7bfe11e342b","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"6bdc71028db658243775263e93a7db2fd2abfce3ca569c3cca5aee6ed5eb186d","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"d2bc987ae352271d0d615a420dcf98cc886aa16b87fb2b569358c1fe0ca0773d","affectsGlobalScope":true,"impliedFormat":1},{"version":"4f0539c58717cbc8b73acb29f9e992ab5ff20adba5f9b57130691c7f9b186a4d","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"76103716ba397bbb61f9fa9c9090dca59f39f9047cb1352b2179c5d8e7f4e8d0","impliedFormat":1},{"version":"f9677e434b7a3b14f0a9367f9dfa1227dfe3ee661792d0085523c3191ae6a1a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"4314c7a11517e221f7296b46547dbc4df047115b182f544d072bdccffa57fc72","impliedFormat":1},{"version":"115971d64632ea4742b5b115fb64ed04bcaae2c3c342f13d9ba7e3f9ee39c4e7","impliedFormat":1},{"version":"c2510f124c0293ab80b1777c44d80f812b75612f297b9857406468c0f4dafe29","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"9057f224b79846e3a95baf6dad2c8103278de2b0c5eebda23fc8188171ad2398","affectsGlobalScope":true,"impliedFormat":1},{"version":"19d5f8d3930e9f99aa2c36258bf95abbe5adf7e889e6181872d1cdba7c9a7dd5","impliedFormat":1},{"version":"e6f5a38687bebe43a4cef426b69d34373ef68be9a6b1538ec0a371e69f309354","impliedFormat":1},{"version":"a6bf63d17324010ca1fbf0389cab83f93389bb0b9a01dc8a346d092f65b3605f","impliedFormat":1},{"version":"e009777bef4b023a999b2e5b9a136ff2cde37dc3f77c744a02840f05b18be8ff","impliedFormat":1},{"version":"1e0d1f8b0adfa0b0330e028c7941b5a98c08b600efe7f14d2d2a00854fb2f393","impliedFormat":1},{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true,"impliedFormat":1},{"version":"88bc59b32d0d5b4e5d9632ac38edea23454057e643684c3c0b94511296f2998c","affectsGlobalScope":true,"impliedFormat":1},{"version":"80905183f29787a3c81bde321aad57f58cd2fb1641d3544d7118adaa248f04e4","impliedFormat":1},{"version":"1e289f30a48126935a5d408a91129a13a59c9b0f8c007a816f9f16ef821e144e","impliedFormat":1},{"version":"f96a023e442f02cf551b4cfe435805ccb0a7e13c81619d4da61ec835d03fe512","impliedFormat":1},{"version":"5135bdd72cc05a8192bd2e92f0914d7fc43ee077d1293dc622a049b7035a0afb","impliedFormat":1},{"version":"528b62e4272e3ddfb50e8eed9e359dedea0a4d171c3eb8f337f4892aac37b24b","impliedFormat":1},{"version":"6d386bc0d7f3afa1d401afc3e00ed6b09205a354a9795196caed937494a713e6","impliedFormat":1},{"version":"f579f267a2f4c2278cca2ec84613e95059368b503ce96586972d304e5e40125b","affectsGlobalScope":true,"impliedFormat":1},{"version":"23459c1915878a7c1e86e8bdb9c187cddd3aea105b8b1dfce512f093c969bc7e","impliedFormat":1},{"version":"b1b6ee0d012aeebe11d776a155d8979730440082797695fc8e2a5c326285678f","impliedFormat":1},{"version":"45875bcae57270aeb3ebc73a5e3fb4c7b9d91d6b045f107c1d8513c28ece71c0","impliedFormat":1},{"version":"1dc73f8854e5c4506131c4d95b3a6c24d0c80336d3758e95110f4c7b5cb16397","affectsGlobalScope":true,"impliedFormat":1},{"version":"5f6f1d54779d0b9ed152b0516b0958cd34889764c1190434bbf18e7a8bb884cd","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f16a7e4deafa527ed9995a772bb380eb7d3c2c0fd4ae178c5263ed18394db2c","impliedFormat":1},{"version":"c6b4e0a02545304935ecbf7de7a8e056a31bb50939b5b321c9d50a405b5a0bba","impliedFormat":1},{"version":"fab29e6d649aa074a6b91e3bdf2bff484934a46067f6ee97a30fcd9762ae2213","impliedFormat":1},{"version":"8145e07aad6da5f23f2fcd8c8e4c5c13fb26ee986a79d03b0829b8fce152d8b2","impliedFormat":1},{"version":"e1120271ebbc9952fdc7b2dd3e145560e52e06956345e6fdf91d70ca4886464f","impliedFormat":1},{"version":"814118df420c4e38fe5ae1b9a3bafb6e9c2aa40838e528cde908381867be6466","impliedFormat":1},{"version":"f7b1df115dbd1b8522cba4f404a9f4fdcd5169e2137129187ffeee9d287e4fd1","impliedFormat":1},{"version":"c878f74b6d10b267f6075c51ac1d8becd15b4aa6a58f79c0cfe3b24908357f60","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"125d792ec6c0c0f657d758055c494301cc5fdb327d9d9d5960b3f129aff76093","impliedFormat":1},{"version":"fbf68fc8057932b1c30107ebc37420f8d8dc4bef1253c4c2f9e141886c0df5ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"2754d8221d77c7b382096651925eb476f1066b3348da4b73fe71ced7801edada","impliedFormat":1},{"version":"993985beef40c7d113f6dd8f0ba26eed63028b691fbfeb6a5b63f26408dd2c6d","affectsGlobalScope":true,"impliedFormat":1},{"version":"f0be1b8078cd549d91f37c30c222c2a187ac1cf981d994fb476a1adc61387b14","affectsGlobalScope":true,"impliedFormat":1},{"version":"0aaed1d72199b01234152f7a60046bc947f1f37d78d182e9ae09c4289e06a592","impliedFormat":1},{"version":"5360a27d3ebca11b224d7d3e38e3e2c63f8290cb1fcf6c3610401898f8e68bc3","impliedFormat":1},{"version":"66ba1b2c3e3a3644a1011cd530fb444a96b1b2dfe2f5e837a002d41a1a799e60","impliedFormat":1},{"version":"7e514f5b852fdbc166b539fdd1f4e9114f29911592a5eb10a94bb3a13ccac3c4","impliedFormat":1},{"version":"7d6ff413e198d25639f9f01f16673e7df4e4bd2875a42455afd4ecc02ef156da","affectsGlobalScope":true,"impliedFormat":1},{"version":"cb094bb347d7df3380299eb69836c2c8758626ecf45917577707c03cf816b6f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"f689c4237b70ae6be5f0e4180e8833f34ace40529d1acc0676ab8fb8f70457d7","impliedFormat":1},{"version":"b02784111b3fc9c38590cd4339ff8718f9329a6f4d3fd66e9744a1dcd1d7e191","impliedFormat":1},{"version":"ac5ed35e649cdd8143131964336ab9076937fa91802ec760b3ea63b59175c10a","impliedFormat":1},{"version":"52a8e7e8a1454b6d1b5ad428efae3870ffc56f2c02d923467f2940c454aa9aec","affectsGlobalScope":true,"impliedFormat":1},{"version":"78dc0513cc4f1642906b74dda42146bcbd9df7401717d6e89ea6d72d12ecb539","impliedFormat":1},{"version":"ad90122e1cb599b3bc06a11710eb5489101be678f2920f2322b0ac3e195af78d","impliedFormat":1},{"version":"b6e17ead1f63a988977d55268fbc1f88f8455e07b4442ecaca86a6295b9bca0d","impliedFormat":1},{"version":"8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","impliedFormat":1},{"version":"5dae0892cddccaf9e5285453f1c97e78b9cf5e3be996f983fc56a63ac53b94d8","impliedFormat":1},{"version":"2d233a382de6a4ac120f49241f652a4f5631b08507ed6e031b7b00b9cc560b87","impliedFormat":1},{"version":"9ccc26dc5c86aaec692f30ae63b01c45765843bc4947e7d690ef57ea59544e8e","impliedFormat":1},{"version":"1e3aa45e69779b57f0d01a45a45d3665c26cea5759b6bb55c5e156b1c6f23c55","impliedFormat":1},{"version":"9c9216966405a82309678de0c1810ccce8d2a51dc766a521ace8954853573ee1","impliedFormat":1},{"version":"fb893a0dfc3c9fb0f9ca93d0648694dd95f33cbad2c0f2c629f842981dfd4e2e","impliedFormat":1},{"version":"3eb11dbf3489064a47a2e1cf9d261b1f100ef0b3b50ffca6c44dd99d6dd81ac1","impliedFormat":1},{"version":"38bfe41d54db874636648909bc36abe85c160ddebdf9c53913ad1f466e24ec84","impliedFormat":1},{"version":"1fcf0fb4160c9d2568d343c368282202d3c1882fdd2b08d54663ee7838924d53","impliedFormat":1},{"version":"3e08915d754e9fa1bccf3641c724ab9e8a50d4c301b80d7ace911e43eb298e54","impliedFormat":1},{"version":"ed19da84b7dbf00952ad0b98ce5c194f1903bcf7c94d8103e8e0d63b271543ae","impliedFormat":1},{"version":"7220461ab7f6d600b313ce621346c315c3a0ebc65b5c6f268488c5c55b68d319","impliedFormat":1},{"version":"f90d4c1ae3af9afb35920b984ba3e41bdd43f0dc7bae890b89fbd52b978f0cac","impliedFormat":1},{"version":"fcf79300e5257a23ed3bacaa6861d7c645139c6f7ece134d15e6669447e5e6db","impliedFormat":1},{"version":"187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","impliedFormat":1},{"version":"aa2c18a1b5a086bbcaae10a4efba409cc95ba7287d8cf8f2591b53704fea3dea","impliedFormat":1},{"version":"b88749bdb18fc1398370e33aa72bc4f88274118f4960e61ce26605f9b33c5ba2","impliedFormat":1},{"version":"0aaef8cded245bf5036a7a40b65622dd6c4da71f7a35343112edbe112b348a1e","impliedFormat":1},{"version":"00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","impliedFormat":1},{"version":"a873c50d3e47c21aa09fbe1e2023d9a44efb07cc0cb8c72f418bf301b0771fd3","impliedFormat":1},{"version":"7c14ccd2eaa82619fffc1bfa877eb68a012e9fb723d07ee98db451fadb618906","impliedFormat":1},{"version":"49c36529ee09ea9ce19525af5bb84985ea8e782cb7ee8c493d9e36d027a3d019","impliedFormat":1},{"version":"df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9","impliedFormat":1},{"version":"4f6a12044ee6f458db11964153830abbc499e73d065c51c329ec97407f4b13dd","impliedFormat":1},{"version":"8c7bb1d03e5607e5ad3d27f48e53dbe70b61372ea73d75000c9ead7ad2ac0fbd","impliedFormat":1},{"version":"5a03d90a285f2c0849d2cedd969cd01f801b8f44308d77c86aa4b75130d088b7","impliedFormat":1},{"version":"d5960343e19e2a78a1dc78a6cee39e2a9d857d4a241180e45f1fd36367495386","impliedFormat":1},{"version":"c0264ca644cd14781acbd942ee3615d2b9810f4e6e6d86e0e14a1dbac8d8cdaa","impliedFormat":1},{"version":"1458833def0c60d8548148fc08d9ca95fa0011c7bf96045ce38065c5c4d48047","impliedFormat":1},{"version":"de9471b25f19b3943df51928960abdd900fa8da30deb581c246c0dbec810c9de","impliedFormat":1},{"version":"d3aca2ab5ac0fdfd53191f44a2d440505c7bf73c1c93bb113d8ffbc37b62869c","impliedFormat":1},{"version":"89130764456b26a6fa46de5ef6ea42b6a3cbaa62e6bc0cb25757a7c43cb00d34","impliedFormat":1},{"version":"f01b36721e9be97fb7254863ccadd3c417a4fba4767e97650768588ad07c22b9","impliedFormat":1},{"version":"8b054be2a316e12dbc5f6305a3c8a96332f5951fb52c5fcef761bcda54ebeb2b","impliedFormat":1},{"version":"4b3dab4da88ad7d3c495b1f7aa0c5a3991c0437a97f7a1aab43ec182f74a6bfc","impliedFormat":1},{"version":"978260b11b03c868dff66b9862422bfda618002a94df75e76b8df2d6d8d4740c","impliedFormat":1},{"version":"a303777c4a10e5e75143415e08babaf3f24bc8927dd073652b1087fcaf2de50a","impliedFormat":1},{"version":"b3982a9cfd8798be0caead4ab7062a46cce8376920d20856453a2622ad1420bf","impliedFormat":1},{"version":"3da542e69e5c0bef96b479a9cc4824fe6549e263b469b2f5a2c5f82c05c498e1","impliedFormat":1},{"version":"e54572d9d33385dcafafeeb2640d0c7a2838db00be5214dbd582b2f46f1b9324","impliedFormat":1},{"version":"3d09a8b49c119963b8b9bd830798133206965a38ea4757e8fe8bfccb3238b6aa","impliedFormat":1},{"version":"81a466460fc5a4e14eda785ec4f7c7b40995939453574b4f1057030f71dec595","impliedFormat":1},{"version":"d50ab0815120231ab511558a753c33b2806b42cabe006356fb0bb763fc30e865","impliedFormat":1},{"version":"81df92841a7a12d551fcbc7e4e83dbb7d54e0c73f33a82162d13e9ae89700079","impliedFormat":1},{"version":"2c8e55457aaf4902941dfdba4061935922e8ee6e120539c9801cd7b400fae050","impliedFormat":1},{"version":"32ddc6ad753ae79571bbf28cebff7a383bf7f562ac5ef5d25c94ef7f71609d49","impliedFormat":1},{"version":"670a76db379b27c8ff42f1ba927828a22862e2ab0b0908e38b671f0e912cc5ed","impliedFormat":1},{"version":"069bebfee29864e3955378107e243508b163e77ab10de6a5ee03ae06939f0bb9","impliedFormat":1},{"version":"d39269d2a3b969bfd48ad79da81bb50e42a55264756cdde09aff2f5b963f6a6f","impliedFormat":1},{"version":"ad007a83ba82282a5b081cd5d87213605d556e6892da8f61b61eb5ff89b9a74b","impliedFormat":1},{"version":"bfc85a8981d6c20a87cd5f1eba6afd3a5cad6673994f545a548bf0782fdd25f1","impliedFormat":1},{"version":"8294fd94e467ad144df9bbd0ff6a150f14f7fa473bb8524c05749bdec34d9b0e","impliedFormat":1},{"version":"10230a955a3fd41688645b2abb92b596bd0c1eae62e05a92c3825c3b34ad5234","impliedFormat":1},{"version":"af432edae5323b4da73e45059916c17a1dce5fe503ac8a480326d9cd7d908706","impliedFormat":1},{"version":"a1ac2bcfaf6e1c53f7c75b694c7a332ed1174096f14a539620f021502af5cca2","impliedFormat":1},{"version":"6a437ff229c33de0dfd6c805daa3d40376e4c060d2b94919f00c6cfc122b29a0","impliedFormat":1},{"version":"41e8ce7169dfdb101d8a157af387bd542172ec842e7bc407d9e47fdda59782fa","impliedFormat":1},{"version":"1a320316245a19c41eee34a2c8d3c669d5e048f44069ac8dc70a3b5a027bc30b","impliedFormat":1},{"version":"629e088d17a1ea44b725597f76d829345e5c5675806996b729fba51c800cd497","impliedFormat":1},{"version":"bf9188bb98c69d44281b5f165ee1064021334631c7d841ffaf459aeb0ac5f982","impliedFormat":1},{"version":"fea2403f4b1a2e2b1171b1d076bb0c69f9c32e417033ad70c458533b7a9a31e1","impliedFormat":1},{"version":"ee940b3dc76c388f05911e8741099926bff59c3cae046cd82deb5cc7d46e58a9","impliedFormat":1},{"version":"2b9254b674dacbfb0593309769e0ccfe8c14cc84632023aac540cb20c306ea16","impliedFormat":1},{"version":"0b87454679443c99368948bc46de64d8fe114ca547e5356cd8d9267f62fe99a9","impliedFormat":1},{"version":"1757eeacddd964919e64fccc69d9209ba893dacc3828ec7068541982dc9ab6d9","impliedFormat":1},{"version":"bd21b568e51ef0d60ba905004a549c316a5f8695ed6c2f95e72e5a35699cb28d","impliedFormat":1},{"version":"64ba746775d776e99f431dfe276827c90cf633b66d9c0328380d8b6cd27f62c9","impliedFormat":1},{"version":"54a529ddfbd61ea552ba963293ce43125a0e02852f2b16b19dcf4968547afa9c","impliedFormat":1},{"version":"bf3a14f808a3ca036c57622bc34ccbb42f338604ea82fe87692c8cf47be83c81","impliedFormat":1},{"version":"1929509da7d867b1864a1fc6303a5f532eaa745094aa64fe2a44dcc61d75bfb8","impliedFormat":1},{"version":"b554d6092f52572f5e2b6f07c7305860b2080aa9ae34258ad36e253e94be1b2c","impliedFormat":1},{"version":"745cd820a3379755cd5c98bcde85522b97dd112504da2169d563880e636004e9","impliedFormat":1},{"version":"e2b48abff5a8adc6bb1cd13a702b9ef05e6045a98e7cfa95a8779b53b6d0e69d","impliedFormat":1},{"version":"544cd410a3c6a1388a610af7d1e9b16401375f2a7654fdb0c5abb7ba117795b2","affectsGlobalScope":true,"impliedFormat":1},{"version":"a660aa95476042d3fdcc1343cf6bb8fdf24772d31712b1db321c5a4dcc325434","impliedFormat":1},{"version":"02b1133807234b1a7d9bf9b1419ee19444dd8c26b101bc268aa8181591241f1f","impliedFormat":1},{"version":"6222e987b58abfe92597e1273ad7233626285bc2d78409d4a7b113d81a83496b","impliedFormat":1},{"version":"cbe726263ae9a7bf32352380f7e8ab66ee25b3457137e316929269c19e18a2be","impliedFormat":1},{"version":"0a25f947e7937ee5e01a21eb10d49de3b467eba752d3b42ea442e9e773f254ef","impliedFormat":99},{"version":"f11151a83668f94c1e763e39d89c0022ceb74618f1bfcf67596044acbe306094","impliedFormat":99},{"version":"b8caba62c0d2ef625f31cbb4fde09d851251af2551086ccf068611b0a69efd81","affectsGlobalScope":true,"impliedFormat":1},{"version":"402e5c534fb2b85fa771170595db3ac0dd532112c8fa44fc23f233bc6967488b","impliedFormat":1},{"version":"8885cf05f3e2abf117590bbb951dcf6359e3e5ac462af1c901cfd24c6a6472e2","impliedFormat":1},{"version":"33f3718dababfc26dfd9832c150149ea4e934f255130f8c118a59ae69e5ed441","impliedFormat":1},{"version":"e61df3640a38d535fd4bc9f4a53aef17c296b58dc4b6394fd576b808dd2fe5e6","impliedFormat":1},{"version":"459920181700cec8cbdf2a5faca127f3f17fd8dd9d9e577ed3f5f3af5d12a2e4","impliedFormat":1},{"version":"4719c209b9c00b579553859407a7e5dcfaa1c472994bd62aa5dd3cc0757eb077","impliedFormat":1},{"version":"7ec359bbc29b69d4063fe7dad0baaf35f1856f914db16b3f4f6e3e1bca4099fa","impliedFormat":1},{"version":"70790a7f0040993ca66ab8a07a059a0f8256e7bb57d968ae945f696cbff4ac7a","impliedFormat":1},{"version":"d1b9a81e99a0050ca7f2d98d7eedc6cda768f0eb9fa90b602e7107433e64c04c","impliedFormat":1},{"version":"a022503e75d6953d0e82c2c564508a5c7f8556fad5d7f971372d2d40479e4034","impliedFormat":1},{"version":"b215c4f0096f108020f666ffcc1f072c81e9f2f95464e894a5d5f34c5ea2a8b1","impliedFormat":1},{"version":"644491cde678bd462bb922c1d0cfab8f17d626b195ccb7f008612dc31f445d2d","impliedFormat":1},{"version":"dfe54dab1fa4961a6bcfba68c4ca955f8b5bbeb5f2ab3c915aa7adaa2eabc03a","impliedFormat":1},{"version":"1bb61aa2f08ab4506d41dbe16c5f3f5010f014bbf46fa3d715c0cbe3b00f4e1c","impliedFormat":1},{"version":"47865c5e695a382a916b1eedda1b6523145426e48a2eae4647e96b3b5e52024f","impliedFormat":1},{"version":"e42820cd611b15910c204cd133f692dcd602532b39317d4f2a19389b27e6f03d","impliedFormat":1},{"version":"331b8f71bfae1df25d564f5ea9ee65a0d847c4a94baa45925b6f38c55c7039bf","impliedFormat":1},{"version":"2a771d907aebf9391ac1f50e4ad37952943515eeea0dcc7e78aa08f508294668","impliedFormat":1},{"version":"0146fd6262c3fd3da51cb0254bb6b9a4e42931eb2f56329edd4c199cb9aaf804","impliedFormat":1},{"version":"183f480885db5caa5a8acb833c2be04f98056bdcc5fb29e969ff86e07efe57ab","impliedFormat":99},{"version":"4ec16d7a4e366c06a4573d299e15fe6207fc080f41beac5da06f4af33ea9761e","impliedFormat":1},{"version":"7870becb94cbc11d2d01b77c4422589adcba4d8e59f726246d40cd0d129784d8","affectsGlobalScope":true,"impliedFormat":1},{"version":"7f698624bbbb060ece7c0e51b7236520ebada74b747d7523c7df376453ed6fea","impliedFormat":1},{"version":"8f07f2b6514744ac96e51d7cb8518c0f4de319471237ea10cf688b8d0e9d0225","impliedFormat":1},{"version":"08971f8379717d46a8a990ce9a7eed3af3e47e22c3d45c3a046054b7a2fffe7a","impliedFormat":99},{"version":"d3f2d715f57df3f04bf7b16dde01dec10366f64fce44503c92b8f78f614c1769","impliedFormat":1},{"version":"b78cd10245a90e27e62d0558564f5d9a16576294eee724a59ae21b91f9269e4a","impliedFormat":1},{"version":"3ce90993cc18eac40830dc096e89d1154bcb7506894f4681228de2558338cc6d","signature":"73579e22c39e3997101be489e9d6088328a850a6fca5f99c591c20a31994c0e0","impliedFormat":99},{"version":"d6975791f20923a97d336d9ca8be2f93a9f833787ccc33409d1b136a13be3492","signature":"0a1ff1a208e1b056b5854e6a9304230743d08d48b8e8c40ff0553a003d71434c","impliedFormat":99},{"version":"a0d13da6723605e5ea39afb213180256dc6c73a2bda9512c3e67fe0e06c7054d","signature":"c2ed123903a1ccd27b4df43d648579ecc04333752fb457e05cf65a4490c5cb2f","impliedFormat":99},{"version":"c6c8b78538814798cfc5ef11306e01748ee02331686e466f1ac38cb7ee798c7c","signature":"dbabfc5e3d191bb9e2c69feb1e032f39e8194147627c4645e90a8bf90fdfbe09","impliedFormat":99},{"version":"77b55f8bfab90aa408704132d98b72f8762e2fe955eeda093ace44120d6adc1a","impliedFormat":1},{"version":"e05ff15557883de7290b3e780fe5f99d2b2c344cedabb29e5ad16e30eeeace2f","signature":"802e818c24ab9b2a38e7e26a1936b5d8f2951bb863cda1fba151060862929f80","impliedFormat":99},{"version":"fc37aca06f6b8b296c42412a2e75ab53d30cd1fa8a340a3bb328a723fd678377","impliedFormat":1},{"version":"5f2c582b9ef260cb9559a64221b38606378c1fabe17694592cdfe5975a6d7efa","impliedFormat":1},{"version":"03c258e060b7da220973f84b89615e4e9850e9b5d30b3a8e4840b3e3268ae8eb","impliedFormat":1},{"version":"fd20dfa2434a61a87e3fa9450f9de2ed2c365ea43b17b34ac6616d90d9681381","impliedFormat":1},{"version":"389303117a81e90897689e7adb4b53a062e68a6fe4067088fae9552907aa28c3","impliedFormat":1},{"version":"d4c4fe14b23180acf25e4a68dc3bb9e5c38233dd3de12a4ab9569e636090ac9b","affectsGlobalScope":true,"impliedFormat":1},{"version":"971f12a5fc236419ced0b7b9f23a53c1758233713f565635bbf4b85e2b23f55a","impliedFormat":1},{"version":"9d670bb3be18ea59cea824e3bb07d576b55c9542f5bc24aacc2a3c1ebd889de6","impliedFormat":1},{"version":"695b586df2d8c78b78cdd7cc6943594f3f4bc52948f13b31cdedfa3ce8d97c31","impliedFormat":1},{"version":"0771a93ef5e3b2a29f929c20f7ad232829341a671c9d1e96e93ef3fc42ef7bc2","impliedFormat":1},{"version":"cadb68b67b80b14a9a5bb64cce3093168fb2bfe2c7b10096d230df5203218de1","impliedFormat":1},{"version":"0b3c75be13f930b46117e205d900ee9c4f2ad6c7317655bca5364958ba1e34f0","impliedFormat":1},{"version":"5af161220fdf46730477706e8c431ccbd1b4ff50223cb32450bc20513f50bfbd","impliedFormat":1},{"version":"1bfbc75967888d5e8854123482a2725a806208d9cee4a09937e566ea67c1df99","impliedFormat":1},{"version":"a6b62e405392a02cc9433194c8713ede9cdf45997a6745c377888dcb0ef0f5b7","impliedFormat":99},{"version":"07c3c96f694c77a8d03ebab30f9678282d9f483a1d5f90b4d8e12749bd4c4d15","signature":"372b2cb6f42ef888e606ba27fee20a9cb1616b8944833d9985f0897dcadf9f7b","impliedFormat":99},{"version":"9571cc72a8cc7e4ea904bd6b9f809dc1c1c38b01f4375264cd85b638f06b0dd1","signature":"5cfeaf249b01371d633a91d560af77e1c9a1d4c4b27817ddeecee28e3136a75e","impliedFormat":99},{"version":"88623aa2028777d8f073c61590feb7f3abde4513918329d868c8c0cb38d2d000","affectsGlobalScope":true,"impliedFormat":1},{"version":"074d6ab080bdcf0ea7100f880d8c33a303a477ebcd2e419d0db657fe7dc6e092","impliedFormat":99},{"version":"fa06c67564e2239dab79347590a602935cdd8f3f7fb1b735eba2fcd6ee3f967a","signature":"ec92aa77b9320508db41c21a471cc5a35d51b9a58f5f1674c82f2f3cd988c182","impliedFormat":99},{"version":"3d67c4a8d86101c16d837f3a881bb6dc00a7f37d902be422668990f05393453c","impliedFormat":1},{"version":"c273363b032a79e69f0f70dc14ea1838ffbd06a1825bd8c661ba94ac90d71e23","signature":"d49126e2249f2896bb3b5f46f27a2e4cbaa52a5bb2e59fea8e857e2b2726e9df","impliedFormat":99},{"version":"1dc7ea7ba9a4ea05e800885b1ae02abc39b8620d97231fc353d25ccf70fce52c","signature":"374d078c4f80533a33b28379e3e1d0acd36d509509763757df5e553085aacb17","impliedFormat":99},{"version":"d5a703fa18b967789d212dcd73ceeb62eaf3bf32a3170aa0e74e1a8964bef863","impliedFormat":1},{"version":"b07a2af67ad692bc3d1b59ab0d6c19c272c22bf4817ce1c8581ad1f94366ce24","impliedFormat":1},{"version":"80537d935d266c1d3717c4506f8877177c7439b66805cc847d8f3d088d573017","signature":"aa62e020edcbe846a5069b3176a4ff0472ff05aa2acfbba3293333bbf2806c7d","impliedFormat":99},{"version":"feab7fc55f4eb4ef127b37d21077cba865978fd2ff330b19e6e43279f91d305d","signature":"5a053a99905f1f02360b0c066ecb90d7e0fe45fb2823a8fe8ee9309a16d4064e","impliedFormat":99},{"version":"0b88661e2639ed09162cecf604377305111fe1be0b37e4bc7c5dc50dc4a2fcc8","signature":"7cdbce6a8c67a581be3c06a8cdcba31595b99d4000ca17c8bdf91c55c8d5c683","impliedFormat":99},{"version":"f7061a87bfbdb163c39bb393ae71e3fca6ec1ad06b70ac9e7ba70e477f77492a","signature":"ddfa009e657ad546a72665dfb9efa3792bf0fa0d67e9e4f7034a4f9d85d55be6","impliedFormat":99},{"version":"f7f8b6edf07e78e260e5933a24a4c1ab4b857ca33523922f198542030a753bd8","signature":"d55c70ca5a5a36b412921fe342d98677dbedfff4577a4691126eee61febeb4e7","impliedFormat":99},{"version":"49f72c8689b1ac2ae0bd393fda181a7cbb98586d8741a8331c1c41964fcabca2","impliedFormat":99},{"version":"3bfcf4742399559f7b4aaa490aa2635ef325b224992f7d81b0be07c73c5ea474","impliedFormat":1},{"version":"b25a1d6e2552304e009260a81c12a9b47858b0f577d09d48c508de72cfd27bee","impliedFormat":1},{"version":"1a9cec9b158710d2cde853c8fcf2b975aba0039ced3d3d6c6ab1dd5f3773370f","impliedFormat":1},{"version":"52550c1a63840a0839253a8940a16286cc7e84ee809b4252340075f44a8369b2","impliedFormat":1},{"version":"1eb2441c0efffc5fb95bdf3c6202aae8ac9c8b8f77eab6df4bb48a3a48df52cf","impliedFormat":1},{"version":"4d1e0aa275bcc14b4ca3a8a8fa7a648f438f26737bf7990932082f7d9619c6fd","impliedFormat":1},{"version":"d21f0dfcfe7014fb628366d9dd7600d05844b3fc230a348beb31dbab4f88ebe5","impliedFormat":1},{"version":"3966afedbec4d84c1d3996a781ae1e7d6619031017a93ec3cf9e713a898ec51f","impliedFormat":1},{"version":"08200806e2d6c767e37b8e78d64d23b37cfece4a43b46d04479e0935c8879039","impliedFormat":1},{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true,"impliedFormat":1},{"version":"f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","impliedFormat":1},{"version":"dd0c1b380ba3437adedef134b2e48869449b1db0b07b2a229069309ce7b9dd39","impliedFormat":1},{"version":"1f68ab0e055994eb337b67aa87d2a15e0200951e9664959b3866ee6f6b11a0fe","impliedFormat":1},{"version":"cdcc132f207d097d7d3aa75615ab9a2e71d6a478162dde8b67f88ea19f3e54de","impliedFormat":1},{"version":"0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","impliedFormat":1},{"version":"c085e9aa62d1ae1375794c1fb927a445fa105fed891a7e24edbb1c3300f7384a","impliedFormat":1},{"version":"f315e1e65a1f80992f0509e84e4ae2df15ecd9ef73df975f7c98813b71e4c8da","impliedFormat":1},{"version":"5b9586e9b0b6322e5bfbd2c29bd3b8e21ab9d871f82346cb71020e3d84bae73e","impliedFormat":1},{"version":"3e70a7e67c2cb16f8cd49097360c0309fe9d1e3210ff9222e9dac1f8df9d4fb6","impliedFormat":1},{"version":"ab68d2a3e3e8767c3fba8f80de099a1cfc18c0de79e42cb02ae66e22dfe14a66","impliedFormat":1},{"version":"d96cc6598148bf1a98fb2e8dcf01c63a4b3558bdaec6ef35e087fd0562eb40ec","impliedFormat":1},{"version":"f8db4fea512ab759b2223b90ecbbe7dae919c02f8ce95ec03f7fb1cf757cfbeb","affectsGlobalScope":true,"impliedFormat":1}],"root":[[267,270],272,288,289,292,294,295,[298,303]],"options":{"allowUnreachableCode":false,"composite":true,"declaration":true,"esModuleInterop":true,"experimentalDecorators":true,"inlineSources":true,"module":199,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","skipLibCheck":true,"sourceMap":true,"strict":true,"target":6,"useUnknownInCatchVariables":false},"referencedMap":[[204,1],[201,2],[317,2],[320,3],[285,4],[283,2],[284,5],[286,6],[281,7],[279,2],[282,8],[280,9],[271,10],[319,2],[206,11],[203,1],[205,12],[202,1],[165,13],[316,14],[313,2],[315,15],[231,2],[169,16],[325,17],[199,2],[276,18],[278,19],[277,20],[314,2],[171,21],[172,22],[170,23],[173,24],[174,25],[175,26],[176,27],[177,28],[178,29],[179,30],[180,31],[181,32],[189,33],[183,33],[182,34],[265,2],[158,2],[164,2],[103,35],[104,35],[105,36],[63,37],[106,38],[107,39],[108,40],[58,2],[61,41],[59,2],[60,2],[109,42],[110,43],[111,44],[112,45],[113,46],[114,47],[115,47],[117,48],[116,49],[118,50],[119,51],[120,52],[102,53],[62,2],[121,54],[122,55],[123,56],[156,57],[124,58],[125,59],[126,60],[127,61],[128,62],[129,63],[130,64],[131,65],[132,66],[133,67],[134,67],[135,68],[136,2],[137,2],[138,69],[140,70],[139,71],[141,72],[142,73],[143,74],[144,75],[145,76],[146,77],[147,78],[148,79],[149,80],[150,81],[151,82],[152,83],[153,84],[154,85],[155,86],[274,87],[273,88],[266,89],[275,2],[296,2],[207,90],[54,2],[157,16],[161,91],[57,2],[291,92],[290,2],[64,2],[318,2],[293,2],[239,2],[324,93],[160,94],[213,2],[322,95],[323,96],[214,97],[256,98],[254,99],[255,100],[243,101],[244,99],[251,102],[242,103],[247,104],[257,2],[248,105],[253,106],[259,107],[258,108],[241,109],[249,110],[250,111],[245,112],[252,98],[246,113],[321,114],[186,115],[185,2],[187,116],[211,2],[233,117],[232,10],[240,2],[287,118],[168,2],[49,2],[50,2],[10,2],[8,2],[9,2],[14,2],[13,2],[2,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[22,2],[3,2],[23,2],[24,2],[4,2],[25,2],[29,2],[26,2],[27,2],[28,2],[30,2],[31,2],[32,2],[5,2],[33,2],[34,2],[35,2],[36,2],[6,2],[51,2],[40,2],[37,2],[38,2],[39,2],[41,2],[7,2],[42,2],[47,2],[48,2],[43,2],[44,2],[45,2],[46,2],[1,2],[12,2],[11,2],[80,119],[90,120],[79,119],[100,121],[71,122],[70,123],[99,124],[93,125],[98,126],[73,127],[87,128],[72,129],[96,130],[68,131],[67,124],[97,132],[69,133],[74,134],[75,2],[78,134],[65,2],[101,135],[91,136],[82,137],[83,138],[85,139],[81,140],[84,141],[94,124],[76,142],[77,143],[86,144],[66,145],[89,136],[88,134],[92,2],[95,146],[264,147],[238,148],[237,149],[235,149],[234,2],[236,150],[262,2],[261,2],[260,2],[263,151],[159,152],[221,153],[53,154],[230,155],[163,2],[166,156],[225,157],[227,153],[228,158],[226,159],[56,2],[52,2],[229,160],[55,161],[224,162],[222,163],[223,160],[218,164],[217,164],[220,164],[219,164],[162,165],[297,2],[209,166],[212,167],[210,168],[197,169],[198,2],[184,2],[200,170],[216,171],[167,2],[188,172],[194,62],[190,173],[191,174],[193,175],[208,176],[195,177],[215,178],[192,179],[303,180],[267,181],[268,156],[269,182],[270,183],[292,184],[289,185],[301,186],[299,187],[300,188],[272,189],[302,190],[295,191],[298,192],[288,193],[294,194],[305,195],[306,2],[196,195],[307,2],[304,2],[308,2],[309,2],[310,2],[311,2],[312,2]],"latestChangedDtsFile":"./index.d.ts","version":"5.8.2"}
|
|
1
|
+
{"fileNames":["../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.dom.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.scripthost.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2019.full.d.ts","../../core/dist/src/packager.d.ts","../../core/dist/src/html-entrypoint.d.ts","../../../node_modules/.pnpm/broccoli-node-api@1.7.0/node_modules/broccoli-node-api/index.d.ts","../../core/dist/src/stage.d.ts","../../core/dist/src/options.d.ts","../../../node_modules/.pnpm/broccoli-plugin@4.0.7/node_modules/broccoli-plugin/dist/interfaces.d.ts","../../../node_modules/.pnpm/@types+node@22.17.1/node_modules/@types/node/compatibility/disposable.d.ts","../../../node_modules/.pnpm/@types+node@22.17.1/node_modules/@types/node/compatibility/indexable.d.ts","../../../node_modules/.pnpm/@types+node@22.17.1/node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/.pnpm/@types+node@22.17.1/node_modules/@types/node/compatibility/index.d.ts","../../../node_modules/.pnpm/@types+node@22.17.1/node_modules/@types/node/globals.typedarray.d.ts","../../../node_modules/.pnpm/@types+node@22.17.1/node_modules/@types/node/buffer.buffer.d.ts","../../../node_modules/.pnpm/buffer@5.7.1/node_modules/buffer/index.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/header.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/readable.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/file.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/fetch.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/formdata.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/connector.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/client.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/errors.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-origin.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool-stats.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/handlers.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-client.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-pool.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-errors.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-handler.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/api.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/interceptors.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/util.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cookies.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/patch.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/websocket.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/eventsource.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/filereader.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/content-type.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cache.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/index.d.ts","../../../node_modules/.pnpm/@types+node@22.17.1/node_modules/@types/node/globals.d.ts","../../../node_modules/.pnpm/@types+node@22.17.1/node_modules/@types/node/assert.d.ts","../../../node_modules/.pnpm/@types+node@22.17.1/node_modules/@types/node/assert/strict.d.ts","../../../node_modules/.pnpm/@types+node@22.17.1/node_modules/@types/node/async_hooks.d.ts","../../../node_modules/.pnpm/@types+node@22.17.1/node_modules/@types/node/buffer.d.ts","../../../node_modules/.pnpm/@types+node@22.17.1/node_modules/@types/node/child_process.d.ts","../../../node_modules/.pnpm/@types+node@22.17.1/node_modules/@types/node/cluster.d.ts","../../../node_modules/.pnpm/@types+node@22.17.1/node_modules/@types/node/console.d.ts","../../../node_modules/.pnpm/@types+node@22.17.1/node_modules/@types/node/constants.d.ts","../../../node_modules/.pnpm/@types+node@22.17.1/node_modules/@types/node/crypto.d.ts","../../../node_modules/.pnpm/@types+node@22.17.1/node_modules/@types/node/dgram.d.ts","../../../node_modules/.pnpm/@types+node@22.17.1/node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/.pnpm/@types+node@22.17.1/node_modules/@types/node/dns.d.ts","../../../node_modules/.pnpm/@types+node@22.17.1/node_modules/@types/node/dns/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.17.1/node_modules/@types/node/domain.d.ts","../../../node_modules/.pnpm/@types+node@22.17.1/node_modules/@types/node/dom-events.d.ts","../../../node_modules/.pnpm/@types+node@22.17.1/node_modules/@types/node/events.d.ts","../../../node_modules/.pnpm/@types+node@22.17.1/node_modules/@types/node/fs.d.ts","../../../node_modules/.pnpm/@types+node@22.17.1/node_modules/@types/node/fs/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.17.1/node_modules/@types/node/http.d.ts","../../../node_modules/.pnpm/@types+node@22.17.1/node_modules/@types/node/http2.d.ts","../../../node_modules/.pnpm/@types+node@22.17.1/node_modules/@types/node/https.d.ts","../../../node_modules/.pnpm/@types+node@22.17.1/node_modules/@types/node/inspector.d.ts","../../../node_modules/.pnpm/@types+node@22.17.1/node_modules/@types/node/module.d.ts","../../../node_modules/.pnpm/@types+node@22.17.1/node_modules/@types/node/net.d.ts","../../../node_modules/.pnpm/@types+node@22.17.1/node_modules/@types/node/os.d.ts","../../../node_modules/.pnpm/@types+node@22.17.1/node_modules/@types/node/path.d.ts","../../../node_modules/.pnpm/@types+node@22.17.1/node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/.pnpm/@types+node@22.17.1/node_modules/@types/node/process.d.ts","../../../node_modules/.pnpm/@types+node@22.17.1/node_modules/@types/node/punycode.d.ts","../../../node_modules/.pnpm/@types+node@22.17.1/node_modules/@types/node/querystring.d.ts","../../../node_modules/.pnpm/@types+node@22.17.1/node_modules/@types/node/readline.d.ts","../../../node_modules/.pnpm/@types+node@22.17.1/node_modules/@types/node/readline/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.17.1/node_modules/@types/node/repl.d.ts","../../../node_modules/.pnpm/@types+node@22.17.1/node_modules/@types/node/sea.d.ts","../../../node_modules/.pnpm/@types+node@22.17.1/node_modules/@types/node/sqlite.d.ts","../../../node_modules/.pnpm/@types+node@22.17.1/node_modules/@types/node/stream.d.ts","../../../node_modules/.pnpm/@types+node@22.17.1/node_modules/@types/node/stream/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.17.1/node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/.pnpm/@types+node@22.17.1/node_modules/@types/node/stream/web.d.ts","../../../node_modules/.pnpm/@types+node@22.17.1/node_modules/@types/node/string_decoder.d.ts","../../../node_modules/.pnpm/@types+node@22.17.1/node_modules/@types/node/test.d.ts","../../../node_modules/.pnpm/@types+node@22.17.1/node_modules/@types/node/timers.d.ts","../../../node_modules/.pnpm/@types+node@22.17.1/node_modules/@types/node/timers/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.17.1/node_modules/@types/node/tls.d.ts","../../../node_modules/.pnpm/@types+node@22.17.1/node_modules/@types/node/trace_events.d.ts","../../../node_modules/.pnpm/@types+node@22.17.1/node_modules/@types/node/tty.d.ts","../../../node_modules/.pnpm/@types+node@22.17.1/node_modules/@types/node/url.d.ts","../../../node_modules/.pnpm/@types+node@22.17.1/node_modules/@types/node/util.d.ts","../../../node_modules/.pnpm/@types+node@22.17.1/node_modules/@types/node/v8.d.ts","../../../node_modules/.pnpm/@types+node@22.17.1/node_modules/@types/node/vm.d.ts","../../../node_modules/.pnpm/@types+node@22.17.1/node_modules/@types/node/wasi.d.ts","../../../node_modules/.pnpm/@types+node@22.17.1/node_modules/@types/node/worker_threads.d.ts","../../../node_modules/.pnpm/@types+node@22.17.1/node_modules/@types/node/zlib.d.ts","../../../node_modules/.pnpm/@types+node@22.17.1/node_modules/@types/node/index.d.ts","../../../node_modules/.pnpm/broccoli-output-wrapper@3.2.5/node_modules/broccoli-output-wrapper/dist/index.d.ts","../../../node_modules/.pnpm/@types+minimatch@3.0.5/node_modules/@types/minimatch/index.d.ts","../../../node_modules/.pnpm/walk-sync@2.2.0/node_modules/walk-sync/index.d.ts","../../../node_modules/.pnpm/fs-merger@3.2.1/node_modules/fs-merger/dist/index.d.ts","../../../node_modules/.pnpm/broccoli-plugin@4.0.7/node_modules/broccoli-plugin/dist/index.d.ts","../../core/dist/src/wait-for-trees.d.ts","../../core/dist/src/js-handlebars.d.ts","../../../node_modules/.pnpm/@types+ms@2.1.0/node_modules/@types/ms/index.d.ts","../../../node_modules/.pnpm/@types+debug@4.1.12/node_modules/@types/debug/index.d.ts","../../core/dist/src/messages.d.ts","../../shared-internals/src/metadata.ts","../../../node_modules/.pnpm/typescript-memoize@1.1.1/node_modules/typescript-memoize/dist/memoize-decorator.d.ts","../../../node_modules/.pnpm/@types+fs-extra@9.0.13/node_modules/@types/fs-extra/index.d.ts","../../../node_modules/.pnpm/@types+lodash@4.17.20/node_modules/@types/lodash/common/common.d.ts","../../../node_modules/.pnpm/@types+lodash@4.17.20/node_modules/@types/lodash/common/array.d.ts","../../../node_modules/.pnpm/@types+lodash@4.17.20/node_modules/@types/lodash/common/collection.d.ts","../../../node_modules/.pnpm/@types+lodash@4.17.20/node_modules/@types/lodash/common/date.d.ts","../../../node_modules/.pnpm/@types+lodash@4.17.20/node_modules/@types/lodash/common/function.d.ts","../../../node_modules/.pnpm/@types+lodash@4.17.20/node_modules/@types/lodash/common/lang.d.ts","../../../node_modules/.pnpm/@types+lodash@4.17.20/node_modules/@types/lodash/common/math.d.ts","../../../node_modules/.pnpm/@types+lodash@4.17.20/node_modules/@types/lodash/common/number.d.ts","../../../node_modules/.pnpm/@types+lodash@4.17.20/node_modules/@types/lodash/common/object.d.ts","../../../node_modules/.pnpm/@types+lodash@4.17.20/node_modules/@types/lodash/common/seq.d.ts","../../../node_modules/.pnpm/@types+lodash@4.17.20/node_modules/@types/lodash/common/string.d.ts","../../../node_modules/.pnpm/@types+lodash@4.17.20/node_modules/@types/lodash/common/util.d.ts","../../../node_modules/.pnpm/@types+lodash@4.17.20/node_modules/@types/lodash/index.d.ts","../../../node_modules/.pnpm/@types+lodash@4.17.20/node_modules/@types/lodash/get.d.ts","../../shared-internals/src/get-or-create.ts","../../../node_modules/.pnpm/resolve-package-path@4.0.3/node_modules/resolve-package-path/lib/cache.d.ts","../../../node_modules/.pnpm/resolve-package-path@4.0.3/node_modules/resolve-package-path/lib/cache-group.d.ts","../../../node_modules/.pnpm/resolve-package-path@4.0.3/node_modules/resolve-package-path/lib/index.d.ts","../../shared-internals/src/package-cache.ts","../../../node_modules/.pnpm/@types+lodash@4.17.20/node_modules/@types/lodash/flatMap.d.ts","../../shared-internals/src/package.ts","../../shared-internals/src/paths.ts","../../shared-internals/src/working-dir.ts","../../shared-internals/src/rewritten-package-cache.ts","../../shared-internals/src/package-name.ts","../../shared-internals/src/tmpdir.ts","../../../types/broccoli-funnel/index.d.ts","../../shared-internals/src/ember-cli-models.ts","../../../node_modules/.pnpm/ember-rfc176-data@0.3.18/node_modules/ember-rfc176-data/mappings.json","../../shared-internals/src/ember-standard-modules.ts","../../../node_modules/.pnpm/@types+js-string-escape@1.0.3/node_modules/@types/js-string-escape/index.d.ts","../../shared-internals/src/hbs-to-js.ts","../../../node_modules/.pnpm/@babel+types@7.28.2/node_modules/@babel/types/lib/index.d.ts","../../../node_modules/.pnpm/@types+babel__traverse@7.28.0/node_modules/@types/babel__traverse/index.d.ts","../../../node_modules/.pnpm/@types+babel__generator@7.27.0/node_modules/@types/babel__generator/index.d.ts","../../../node_modules/.pnpm/@babel+parser@7.28.0/node_modules/@babel/parser/typings/babel-parser.d.ts","../../../node_modules/.pnpm/@types+babel__template@7.4.4/node_modules/@types/babel__template/index.d.ts","../../../node_modules/.pnpm/@types+babel__core@7.20.5/node_modules/@types/babel__core/index.d.ts","../../../node_modules/.pnpm/babel-import-util@3.0.1/node_modules/babel-import-util/src/index.d.ts","../../shared-internals/src/template-colocation-plugin.ts","../../shared-internals/src/babel-plugin-cache-busting.ts","../../shared-internals/src/dep-validation.ts","../../../node_modules/.pnpm/resolve.exports@2.0.3/node_modules/resolve.exports/index.d.ts","../../shared-internals/src/colocation.ts","../../../node_modules/.pnpm/is-subdir@1.2.0/node_modules/is-subdir/index.d.ts","../../../node_modules/.pnpm/pkg-entry-points@1.1.1/node_modules/pkg-entry-points/dist/index.d.cts","../../shared-internals/src/watch-utils.ts","../../shared-internals/src/index.ts","../../core/dist/src/virtual-test-support.d.ts","../../core/dist/src/virtual-test-support-styles.d.ts","../../core/dist/src/virtual-vendor.d.ts","../../core/dist/src/virtual-vendor-styles.d.ts","../../core/dist/src/app-files.d.ts","../../core/dist/src/virtual-entrypoint.d.ts","../../core/dist/src/virtual-route-entrypoint.d.ts","../../core/dist/src/virtual-content.d.ts","../../core/dist/src/module-request.d.ts","../../core/dist/src/node-resolve.d.ts","../../core/dist/src/module-resolver-options.d.ts","../../core/dist/src/module-resolver.d.ts","../../core/dist/src/resolver-loader.d.ts","../../core/dist/src/index.d.ts","../../../node_modules/.pnpm/rolldown-vite@7.1.0_@types+node@22.17.1_esbuild@0.25.8_terser@5.43.1/node_modules/rolldown-vite/types/hmrPayload.d.ts","../../../node_modules/.pnpm/rolldown-vite@7.1.0_@types+node@22.17.1_esbuild@0.25.8_terser@5.43.1/node_modules/rolldown-vite/types/customEvent.d.ts","../../../node_modules/.pnpm/rolldown-vite@7.1.0_@types+node@22.17.1_esbuild@0.25.8_terser@5.43.1/node_modules/rolldown-vite/types/hot.d.ts","../../../node_modules/.pnpm/rolldown-vite@7.1.0_@types+node@22.17.1_esbuild@0.25.8_terser@5.43.1/node_modules/rolldown-vite/dist/node/index-B3j8zCuh.d.ts","../../../node_modules/.pnpm/@oxc-project+types@0.80.0/node_modules/@oxc-project/types/types.d.ts","../../../node_modules/.pnpm/rolldown@1.0.0-beta.31/node_modules/rolldown/dist/shared/binding-B2f_h9DF.d.mts","../../../node_modules/.pnpm/@rolldown+pluginutils@1.0.0-beta.31/node_modules/@rolldown/pluginutils/dist/index.d.ts","../../../node_modules/.pnpm/rolldown@1.0.0-beta.31/node_modules/rolldown/dist/shared/define-config-BSYGonXk.d.mts","../../../node_modules/.pnpm/rolldown@1.0.0-beta.31/node_modules/rolldown/dist/index.d.mts","../../../node_modules/.pnpm/rolldown@1.0.0-beta.31/node_modules/rolldown/dist/shared/binding-CCkTRaSB.d.cts","../../../node_modules/.pnpm/@rolldown+pluginutils@1.0.0-beta.31/node_modules/@rolldown/pluginutils/dist/index.d.cts","../../../node_modules/.pnpm/rolldown@1.0.0-beta.31/node_modules/rolldown/dist/shared/define-config-BzVT47Bj.d.cts","../../../node_modules/.pnpm/rolldown@1.0.0-beta.31/node_modules/rolldown/dist/index.d.cts","../../../node_modules/.pnpm/rolldown-vite@7.1.0_@types+node@22.17.1_esbuild@0.25.8_terser@5.43.1/node_modules/rolldown-vite/types/internal/rollupTypeCompat.d.ts","../../../node_modules/.pnpm/rolldown@1.0.0-beta.31/node_modules/rolldown/dist/parse-ast-index.d.mts","../../../node_modules/.pnpm/esbuild@0.25.8/node_modules/esbuild/lib/main.d.ts","../../../node_modules/.pnpm/rolldown-vite@7.1.0_@types+node@22.17.1_esbuild@0.25.8_terser@5.43.1/node_modules/rolldown-vite/types/internal/esbuildOptions.d.ts","../../../node_modules/.pnpm/rolldown-vite@7.1.0_@types+node@22.17.1_esbuild@0.25.8_terser@5.43.1/node_modules/rolldown-vite/types/metadata.d.ts","../../../node_modules/.pnpm/@jridgewell+trace-mapping@0.3.29/node_modules/@jridgewell/trace-mapping/types/sourcemap-segment.d.mts","../../../node_modules/.pnpm/@jridgewell+trace-mapping@0.3.29/node_modules/@jridgewell/trace-mapping/types/types.d.mts","../../../node_modules/.pnpm/@jridgewell+trace-mapping@0.3.29/node_modules/@jridgewell/trace-mapping/types/flatten-map.d.mts","../../../node_modules/.pnpm/@jridgewell+trace-mapping@0.3.29/node_modules/@jridgewell/trace-mapping/types/trace-mapping.d.mts","../../../node_modules/.pnpm/@jridgewell+gen-mapping@0.3.12/node_modules/@jridgewell/gen-mapping/types/sourcemap-segment.d.mts","../../../node_modules/.pnpm/@jridgewell+gen-mapping@0.3.12/node_modules/@jridgewell/gen-mapping/types/types.d.mts","../../../node_modules/.pnpm/@jridgewell+gen-mapping@0.3.12/node_modules/@jridgewell/gen-mapping/types/gen-mapping.d.mts","../../../node_modules/.pnpm/@jridgewell+source-map@0.3.10/node_modules/@jridgewell/source-map/types/source-map.d.mts","../../../node_modules/.pnpm/terser@5.43.1/node_modules/terser/tools/terser.d.ts","../../../node_modules/.pnpm/rolldown-vite@7.1.0_@types+node@22.17.1_esbuild@0.25.8_terser@5.43.1/node_modules/rolldown-vite/types/internal/terserOptions.d.ts","../../../node_modules/.pnpm/source-map-js@1.2.1/node_modules/source-map-js/source-map.d.ts","../../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/previous-map.d.ts","../../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/input.d.ts","../../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/css-syntax-error.d.ts","../../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/declaration.d.ts","../../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/root.d.ts","../../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/warning.d.ts","../../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/lazy-result.d.ts","../../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/no-work-result.d.ts","../../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/processor.d.ts","../../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/result.d.ts","../../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/document.d.ts","../../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/rule.d.ts","../../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/node.d.ts","../../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/comment.d.ts","../../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/container.d.ts","../../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/at-rule.d.ts","../../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/list.d.ts","../../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/postcss.d.ts","../../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/postcss.d.mts","../../../node_modules/.pnpm/lightningcss@1.30.1/node_modules/lightningcss/node/ast.d.ts","../../../node_modules/.pnpm/lightningcss@1.30.1/node_modules/lightningcss/node/targets.d.ts","../../../node_modules/.pnpm/lightningcss@1.30.1/node_modules/lightningcss/node/index.d.ts","../../../node_modules/.pnpm/rolldown-vite@7.1.0_@types+node@22.17.1_esbuild@0.25.8_terser@5.43.1/node_modules/rolldown-vite/types/internal/lightningcssOptions.d.ts","../../../node_modules/.pnpm/rolldown-vite@7.1.0_@types+node@22.17.1_esbuild@0.25.8_terser@5.43.1/node_modules/rolldown-vite/types/internal/cssPreprocessorOptions.d.ts","../../../node_modules/.pnpm/rolldown@1.0.0-beta.31/node_modules/rolldown/dist/experimental-index.d.mts","../../../node_modules/.pnpm/rolldown@1.0.0-beta.31/node_modules/rolldown/dist/filter-index.d.mts","../../../node_modules/.pnpm/rolldown-vite@7.1.0_@types+node@22.17.1_esbuild@0.25.8_terser@5.43.1/node_modules/rolldown-vite/types/importGlob.d.ts","../../../node_modules/.pnpm/rolldown-vite@7.1.0_@types+node@22.17.1_esbuild@0.25.8_terser@5.43.1/node_modules/rolldown-vite/dist/node/index.d.ts","../../../node_modules/.pnpm/@types+mime@1.3.5/node_modules/@types/mime/index.d.ts","../../../node_modules/.pnpm/@types+send@0.17.5/node_modules/@types/send/index.d.ts","../src/assets.ts","../src/backchannel.ts","../src/build-once.ts","../src/build.ts","../../../node_modules/.pnpm/@types+estree@1.0.8/node_modules/@types/estree/index.d.ts","../../../node_modules/.pnpm/@rollup+pluginutils@5.2.0_rolldown@1.0.0-beta.29/node_modules/@rollup/pluginutils/types/index.d.ts","../../../node_modules/.pnpm/@oxc-project+types@0.77.3/node_modules/@oxc-project/types/types.d.ts","../../../node_modules/.pnpm/rolldown@1.0.0-beta.29/node_modules/rolldown/dist/shared/binding-BO7hG1pA.d.mts","../../../node_modules/.pnpm/@rolldown+pluginutils@1.0.0-beta.29/node_modules/@rolldown/pluginutils/dist/index.d.ts","../../../node_modules/.pnpm/rolldown@1.0.0-beta.29/node_modules/rolldown/dist/shared/define-config-CgND8XFH.d.mts","../../../node_modules/.pnpm/rolldown@1.0.0-beta.29/node_modules/rolldown/dist/index.d.mts","../src/hbs.ts","../../../node_modules/.pnpm/@types+parse5@6.0.3/node_modules/@types/parse5/lib/tree-adapters/default.d.ts","../../../node_modules/.pnpm/@types+parse5@6.0.3/node_modules/@types/parse5/index.d.ts","../../../node_modules/.pnpm/@types+tough-cookie@4.0.5/node_modules/@types/tough-cookie/index.d.ts","../../../node_modules/.pnpm/@types+jsdom@16.2.15/node_modules/@types/jsdom/base.d.ts","../../../node_modules/.pnpm/@types+jsdom@16.2.15/node_modules/@types/jsdom/ts4.0/index.d.ts","../../../node_modules/.pnpm/@types+jsdom@16.2.15/node_modules/@types/jsdom/index.d.ts","../src/scripts.ts","../src/content-for.ts","../../../node_modules/.pnpm/browserslist@4.25.2/node_modules/browserslist/index.d.ts","../../../node_modules/.pnpm/browserslist-to-esbuild@2.1.1_browserslist@4.25.2/node_modules/browserslist-to-esbuild/src/index.d.ts","../src/classic-ember-support.ts","../../../node_modules/.pnpm/content-tag@3.1.3/node_modules/content-tag/index.d.cts","../src/template-tag.ts","../../../node_modules/.pnpm/assert-never@1.4.0/node_modules/assert-never/index.d.ts","../../reverse-exports/dist/src/index.d.ts","../src/request.ts","../src/resolver.ts","../src/esbuild-request.ts","../src/esbuild-resolver.ts","../src/ember.ts","../src/optimize-deps.ts","../index.ts","../../../types/broccoli/index.d.ts","../../../types/broccoli-concat/index.d.ts","../../../types/broccoli-file-creator/index.d.ts","../../../types/broccoli-merge-trees/index.d.ts","../../../types/console-ui/index.d.ts","../../../types/ember-cli/index.d.ts","../../../types/fast-sourcemap-concat/index.d.ts","../../../types/source-map-url/index.d.ts","../../../types/thread-loader/index.d.ts","../../../node_modules/.pnpm/@jest+expect-utils@29.7.0/node_modules/@jest/expect-utils/build/index.d.ts","../../../node_modules/.pnpm/chalk@4.1.2/node_modules/chalk/index.d.ts","../../../node_modules/.pnpm/@sinclair+typebox@0.27.8/node_modules/@sinclair/typebox/typebox.d.ts","../../../node_modules/.pnpm/@jest+schemas@29.6.3/node_modules/@jest/schemas/build/index.d.ts","../../../node_modules/.pnpm/pretty-format@29.7.0/node_modules/pretty-format/build/index.d.ts","../../../node_modules/.pnpm/jest-diff@29.7.0/node_modules/jest-diff/build/index.d.ts","../../../node_modules/.pnpm/jest-matcher-utils@29.7.0/node_modules/jest-matcher-utils/build/index.d.ts","../../../node_modules/.pnpm/expect@29.7.0/node_modules/expect/build/index.d.ts","../../../node_modules/.pnpm/@types+jest@29.5.14/node_modules/@types/jest/index.d.ts"],"fileIdsList":[[63,106,202,306,307,308],[63,106,306,307,308],[63,106,306,307,308,336],[63,106,253,255,306,307,308],[63,106,254,306,307,308],[63,106,253,256,306,307,308],[63,106,251,253,306,307,308],[63,106,250,251,252,306,307,308],[63,106,250,253,306,307,308],[63,106,295,306,307,308],[63,106,202,203,204,205,206,306,307,308],[63,106,202,205,306,307,308],[63,106,164,306,307,308],[63,106,119,156,306,307,308],[63,106,306,307,308,338,341],[63,106,118,152,156,304,305,307,308],[63,106,306,307],[63,106,306,308],[63,106,170,172,173,174,175,176,177,178,179,180,181,182,306,307,308],[63,106,170,171,173,174,175,176,177,178,179,180,181,182,306,307,308],[63,106,171,172,173,174,175,176,177,178,179,180,181,182,306,307,308],[63,106,170,171,172,174,175,176,177,178,179,180,181,182,306,307,308],[63,106,170,171,172,173,175,176,177,178,179,180,181,182,306,307,308],[63,106,170,171,172,173,174,176,177,178,179,180,181,182,306,307,308],[63,106,170,171,172,173,174,175,177,178,179,180,181,182,306,307,308],[63,106,170,171,172,173,174,175,176,178,179,180,181,182,306,307,308],[63,106,170,171,172,173,174,175,176,177,179,180,181,182,306,307,308],[63,106,170,171,172,173,174,175,176,177,178,180,181,182,306,307,308],[63,106,170,171,172,173,174,175,176,177,178,179,181,182,306,307,308],[63,106,170,171,172,173,174,175,176,177,178,179,180,182,306,307,308],[63,106,182,306,307,308],[63,106,170,171,172,173,174,175,176,177,178,179,180,181,306,307,308],[63,103,106,306,307,308],[63,105,106,306,307,308],[106,306,307,308],[63,106,111,141,306,307,308],[63,106,107,112,118,119,126,138,149,306,307,308],[63,106,107,108,118,126,306,307,308],[58,59,60,63,106,306,307,308],[63,106,109,150,306,307,308],[63,106,110,111,119,127,306,307,308],[63,106,111,138,146,306,307,308],[63,106,112,114,118,126,306,307,308],[63,105,106,113,306,307,308],[63,106,114,115,306,307,308],[63,106,116,118,306,307,308],[63,105,106,118,306,307,308],[63,106,118,119,120,138,149,306,307,308],[63,106,118,119,120,133,138,141,306,307,308],[63,101,106,306,307,308],[63,101,106,114,118,121,126,138,149,306,307,308],[63,106,118,119,121,122,126,138,146,149,306,307,308],[63,106,121,123,138,146,149,306,307,308],[61,62,63,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,306,307,308],[63,106,118,124,306,307,308],[63,106,125,149,306,307,308],[63,106,114,118,126,138,306,307,308],[63,106,127,306,307,308],[63,106,128,306,307,308],[63,105,106,129,306,307,308],[63,103,104,105,106,107,108,109,110,111,112,113,114,115,116,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,306,307,308],[63,106,131,306,307,308],[63,106,132,306,307,308],[63,106,118,133,134,306,307,308],[63,106,133,135,150,152,306,307,308],[63,106,118,138,139,141,306,307,308],[63,106,140,141,306,307,308],[63,106,138,139,306,307,308],[63,106,141,306,307,308],[63,106,142,306,307,308],[63,103,106,138,143,306,307,308],[63,106,118,144,145,306,307,308],[63,106,144,145,306,307,308],[63,106,111,126,138,146,306,307,308],[63,106,147,306,307,308],[63,106,126,148,306,307,308],[63,106,121,132,149,306,307,308],[63,106,111,150,306,307,308],[63,106,138,151,306,307,308],[63,106,125,152,306,307,308],[63,106,153,306,307,308],[63,106,118,120,129,138,141,149,151,152,154,306,307,308],[63,106,138,155,306,307,308],[63,106,303,306,307,308],[63,106,304,306,307,308],[63,106,119,138,156,289,306,307,308],[63,106,207,306,307,308],[54,57,63,106,157,160,306,307,308],[63,106,306,307,308,311],[63,106,306,307,308,334,340],[54,63,106,119,156,159,306,307,308],[63,106,306,307,308,338],[63,106,306,307,308,335,339],[63,106,280,281,306,307,308],[63,106,119,306,307,308],[63,106,275,306,307,308],[63,106,273,275,306,307,308],[63,106,264,272,273,274,276,278,306,307,308],[63,106,262,306,307,308],[63,106,265,270,275,278,306,307,308],[63,106,261,278,306,307,308],[63,106,265,266,269,270,271,278,306,307,308],[63,106,265,266,267,269,270,278,306,307,308],[63,106,262,263,264,265,266,270,271,272,274,275,276,278,306,307,308],[63,106,278,306,307,308],[63,106,260,262,263,264,265,266,267,269,270,271,272,273,274,275,276,277,306,307,308],[63,106,260,278,306,307,308],[63,106,265,267,268,270,271,278,306,307,308],[63,106,269,278,306,307,308],[63,106,270,271,275,278,306,307,308],[63,106,263,273,306,307,308],[63,106,306,307,308,337],[63,106,185,306,307,308],[63,106,185,186,306,307,308],[63,106,232,233,234,306,307,308],[63,106,118,119,121,122,123,126,138,146,149,155,156,232,233,235,240,245,246,248,249,259,279,283,284,285,286,287,288,306,307,308],[63,106,232,306,307,308],[63,106,233,306,307,308],[63,106,247,306,307,308],[63,106,282,306,307,308],[63,106,244,249,306,307,308],[63,106,258,306,307,308],[63,106,244,306,307,308],[63,106,298,300,306,307,308],[63,106,297,306,307,308],[63,106,297,298,299,306,307,308],[63,106,237,239,306,307,308],[63,106,237,238,239,306,307,308],[63,106,241,243,306,307,308],[63,106,236,237,306,307,308],[63,106,236,306,307,308],[63,106,236,237,238,306,307,308],[63,106,236,241,242,306,307,308],[63,106,257,306,307,308],[63,73,77,106,149,306,307,308],[63,73,106,138,149,306,307,308],[63,68,106,306,307,308],[63,70,73,106,146,149,306,307,308],[63,106,126,146,306,307,308],[63,106,156,306,307,308],[63,68,106,156,306,307,308],[63,70,73,106,126,149,306,307,308],[63,65,66,69,72,106,118,138,149,306,307,308],[63,73,80,106,306,307,308],[63,65,71,106,306,307,308],[63,73,94,95,106,306,307,308],[63,69,73,106,141,149,156,306,307,308],[63,94,106,156,306,307,308],[63,67,68,106,156,306,307,308],[63,73,106,306,307,308],[63,67,68,69,70,71,72,73,74,75,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,95,96,97,98,99,100,106,306,307,308],[63,73,88,106,306,307,308],[63,73,80,81,106,306,307,308],[63,71,73,81,82,106,306,307,308],[63,72,106,306,307,308],[63,65,68,73,106,306,307,308],[63,73,77,81,82,106,306,307,308],[63,77,106,306,307,308],[63,71,73,76,106,149,306,307,308],[63,65,70,73,80,106,306,307,308],[63,106,138,306,307,308],[63,68,73,94,106,154,156,306,307,308],[63,106,119,156,158,306,307,308],[63,106,217,306,307,308],[52,63,106,306,307,308],[52,53,55,56,63,106,162,163,166,217,222,225,226,228,229,230,306,307,308],[63,106,165,306,307,308],[63,106,225,306,307,308],[63,106,217,226,227,228,306,307,308],[63,106,225,226,229,306,307,308],[63,106,229,306,307,308],[54,63,106,306,307,308],[63,106,218,219,220,221,223,224,231,306,307,308],[63,106,222,229,306,307,308],[63,106,225,229,306,307,308],[54,63,106,161,306,307,308],[63,106,169,306,307,308],[63,106,128,169,188,191,212,306,307,308],[63,106,190,306,307,308],[54,63,106,167,196,306,307,308],[63,106,198,306,307,308],[63,106,128,200,306,307,308],[63,106,167,184,188,190,191,192,193,194,195,197,199,201,209,210,211,213,216,306,307,308],[63,106,119,128,184,187,190,306,307,308],[63,106,128,167,168,169,183,188,189,306,307,308],[63,106,128,190,306,307,308],[63,106,128,169,184,188,190,192,306,307,308],[63,106,119,128,158,165,191,203,207,208,217,306,307,308],[63,106,127,169,306,307,308],[63,106,128,214,215,306,307,308],[63,106,119,128,169,306,307,308],[63,106,291,293,294,302,306,307,308,309,310,313,315,319,321,322,323],[63,106,128,130,169,231,288,290,306,307,308],[63,106,107,306,307,308],[63,106,107,125,128,288,306,307,308],[63,106,119,128,149,291,294,302,306,307,308,309,310,312],[63,106,128,169,231,288,306,307,308],[63,106,288,306,307,308,315,319,321],[63,106,128,231,247,292,306,307,308,316,317],[63,106,128,169,207,231,247,292,306,307,308,314,316,320],[63,106,231,288,296,301,306,307,308],[63,106,306,307,308,321],[63,106,128,231,292,301,306,307,308,316,317],[63,106,111,128,165,169,231,288,292,301,306,307,308,316,317,318],[63,106,111,128,169,258,288,301,306,307,308,332],[63,106,288,296,306,307,308,314],[63,106,161,306,307,308]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","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":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2e80ee7a49e8ac312cc11b77f1475804bee36b3b2bc896bead8b6e1266befb43","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7a3c8b952931daebdfc7a2897c53c0a1c73624593fa070e46bd537e64dcd20a","affectsGlobalScope":true,"impliedFormat":1},{"version":"80e18897e5884b6723488d4f5652167e7bb5024f946743134ecc4aa4ee731f89","affectsGlobalScope":true,"impliedFormat":1},{"version":"cd034f499c6cdca722b60c04b5b1b78e058487a7085a8e0d6fb50809947ee573","affectsGlobalScope":true,"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":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","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":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","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":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"08f6861df84fba9719c14d5adc3ba40be9f0c687639e6c4df3c05b9301b8ff94","impliedFormat":1},{"version":"8cacf8ff57f2abccde586ca6b2ad0d5b6aa805f1e05d648016a699c4d34e7e33","impliedFormat":1},{"version":"792dfbb0cff6fc2ea09ccfe0e2edc66e05b4b0b86f77195d8d3b946423f853e5","impliedFormat":1},{"version":"d7080e710749d451754bdd05701a2d9b9c04b31aaca1afdc798f6b49e1e6ba54","impliedFormat":1},{"version":"22e9daef6c13ef229200e88e58732e6d977dfdf1328a4af72b9305f46b6b89d4","impliedFormat":1},{"version":"028b7d52179b04ec4b8e4967e4828fdc66c9d8e3e9c103e5321c3610c3a61dd0","impliedFormat":1},{"version":"4a91fa7370259a7be029b46233de8309646395443f1f0d90639dab3d6f58bc9b","impliedFormat":1},{"version":"6c7176368037af28cb72f2392010fa1cef295d6d6744bca8cfb54985f3a18c3e","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true,"impliedFormat":1},{"version":"437e20f2ba32abaeb7985e0afe0002de1917bc74e949ba585e49feba65da6ca1","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"a79e62f1e20467e11a904399b8b18b18c0c6eea6b50c1168bf215356d5bebfaf","affectsGlobalScope":true,"impliedFormat":1},{"version":"d802f0e6b5188646d307f070d83512e8eb94651858de8a82d1e47f60fb6da4e2","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"a12d953aa755b14ac1d28ecdc1e184f3285b01d6d1e58abc11bf1826bc9d80e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"a38efe83ff77c34e0f418a806a01ca3910c02ee7d64212a59d59bca6c2c38fa1","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"2b06b93fd01bcd49d1a6bd1f9b65ddcae6480b9a86e9061634d6f8e354c1468f","impliedFormat":1},{"version":"2b7b4bc0ff201a3f08b5d1e5161998ea655b7a2c840ca646c3adcaf126aa8882","affectsGlobalScope":true,"impliedFormat":1},{"version":"4314c7a11517e221f7296b46547dbc4df047115b182f544d072bdccffa57fc72","impliedFormat":1},{"version":"e9b97d69510658d2f4199b7d384326b7c4053b9e6645f5c19e1c2a54ede427fc","impliedFormat":1},{"version":"c2510f124c0293ab80b1777c44d80f812b75612f297b9857406468c0f4dafe29","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"81711af669f63d43ccb4c08e15beda796656dd46673d0def001c7055db53852d","affectsGlobalScope":true,"impliedFormat":1},{"version":"19d5f8d3930e9f99aa2c36258bf95abbe5adf7e889e6181872d1cdba7c9a7dd5","impliedFormat":1},{"version":"9855e02d837744303391e5623a531734443a5f8e6e8755e018c41d63ad797db2","impliedFormat":1},{"version":"bdba81959361810be44bcfdd283f4d601e406ab5ad1d2bdff0ed480cf983c9d7","impliedFormat":1},{"version":"836a356aae992ff3c28a0212e3eabcb76dd4b0cc06bcb9607aeef560661b860d","impliedFormat":1},{"version":"1e0d1f8b0adfa0b0330e028c7941b5a98c08b600efe7f14d2d2a00854fb2f393","impliedFormat":1},{"version":"71450bbc2d82821d24ca05699a533e72758964e9852062c53b30f31c36978ab8","affectsGlobalScope":true,"impliedFormat":1},{"version":"b326f4813b90d230ec3950f66bd5b5ce3971aac5fac67cfafc54aa07b39fd07f","affectsGlobalScope":true,"impliedFormat":1},{"version":"6ee692acba8b517b5041c02c5a3369a03f36158b6bb7605d6a98d832e7a13fcc","impliedFormat":1},{"version":"ee07335d073f94f1ec8d7311c4b15abac03a8160e7cdfd4771c47440a7489e1b","impliedFormat":1},{"version":"ec79bdd311bcba9b889af9da0cd88611affdda8c2d491305fa61b7529d5b89ba","impliedFormat":1},{"version":"73cf6cc19f16c0191e4e9d497ab0c11c7b38f1ca3f01ad0f09a3a5a971aac4b8","impliedFormat":1},{"version":"528b62e4272e3ddfb50e8eed9e359dedea0a4d171c3eb8f337f4892aac37b24b","impliedFormat":1},{"version":"eec1e051df11fb4c7f4df5a9a18022699e596024c06bc085e9b410effe790a9a","impliedFormat":1},{"version":"d83f86427b468176fbacb28ef302f152ad3d2d127664c627216e45cfa06fbf7e","affectsGlobalScope":true,"impliedFormat":1},{"version":"f72bc8fe16da67e4e3268599295797b202b95e54bd215a03f97e925dd1502a36","impliedFormat":1},{"version":"b1b6ee0d012aeebe11d776a155d8979730440082797695fc8e2a5c326285678f","impliedFormat":1},{"version":"45875bcae57270aeb3ebc73a5e3fb4c7b9d91d6b045f107c1d8513c28ece71c0","impliedFormat":1},{"version":"915e18c559321c0afaa8d34674d3eb77e1ded12c3e85bf2a9891ec48b07a1ca5","affectsGlobalScope":true,"impliedFormat":1},{"version":"a2f3aa60aece790303a62220456ff845a1b980899bdc2e81646b8e33d9d9cc15","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f16a7e4deafa527ed9995a772bb380eb7d3c2c0fd4ae178c5263ed18394db2c","impliedFormat":1},{"version":"933921f0bb0ec12ef45d1062a1fc0f27635318f4d294e4d99de9a5493e618ca2","impliedFormat":1},{"version":"71a0f3ad612c123b57239a7749770017ecfe6b66411488000aba83e4546fde25","impliedFormat":1},{"version":"70b57b5529051497e9f6482b76d91c0dcbb103d9ead8a0549f5bab8f65e5d031","impliedFormat":1},{"version":"4f9d8ca0c417b67b69eeb54c7ca1bedd7b56034bb9bfd27c5d4f3bc4692daca7","impliedFormat":1},{"version":"814118df420c4e38fe5ae1b9a3bafb6e9c2aa40838e528cde908381867be6466","impliedFormat":1},{"version":"0be405730b99eee7dbb051d74f6c3c0f1f8661d86184a7122b82c2bfb0991922","impliedFormat":1},{"version":"8302157cd431b3943eed09ad439b4441826c673d9f870dcb0e1f48e891a4211e","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"125d792ec6c0c0f657d758055c494301cc5fdb327d9d9d5960b3f129aff76093","impliedFormat":1},{"version":"dba28a419aec76ed864ef43e5f577a5c99a010c32e5949fe4e17a4d57c58dd11","affectsGlobalScope":true,"impliedFormat":1},{"version":"2754d8221d77c7b382096651925eb476f1066b3348da4b73fe71ced7801edada","impliedFormat":1},{"version":"a5890565ed564c7b29eb1b1038d4e10c03a3f5231b0a8d48fea4b41ab19f4f46","impliedFormat":1},{"version":"f0be1b8078cd549d91f37c30c222c2a187ac1cf981d994fb476a1adc61387b14","affectsGlobalScope":true,"impliedFormat":1},{"version":"0aaed1d72199b01234152f7a60046bc947f1f37d78d182e9ae09c4289e06a592","impliedFormat":1},{"version":"98ffdf93dfdd206516971d28e3e473f417a5cfd41172e46b4ce45008f640588e","impliedFormat":1},{"version":"66ba1b2c3e3a3644a1011cd530fb444a96b1b2dfe2f5e837a002d41a1a799e60","impliedFormat":1},{"version":"7e514f5b852fdbc166b539fdd1f4e9114f29911592a5eb10a94bb3a13ccac3c4","impliedFormat":1},{"version":"7172949957e9ae6dd5c046d658cc5f1d00c12d85006554412e1de0dcfea8257e","affectsGlobalScope":true,"impliedFormat":1},{"version":"1a654e0d950353614ba4637a8de4f9d367903a0692b748e11fccf8c880c99735","affectsGlobalScope":true,"impliedFormat":1},{"version":"42da246c46ca3fd421b6fd88bb4466cda7137cf33e87ba5ceeded30219c428bd","impliedFormat":1},{"version":"3a051941721a7f905544732b0eb819c8d88333a96576b13af08b82c4f17581e4","impliedFormat":1},{"version":"ac5ed35e649cdd8143131964336ab9076937fa91802ec760b3ea63b59175c10a","impliedFormat":1},{"version":"66e4838e0e3e0ea1ee62b57b3984a7f606f73523dfdae6500b6e3258c0aa3c7d","affectsGlobalScope":true,"impliedFormat":1},{"version":"db3d77167a7da6c5ba0c51c5b654820e3464093f21724ccd774c0b9bc3f81bc0","impliedFormat":1},{"version":"ad90122e1cb599b3bc06a11710eb5489101be678f2920f2322b0ac3e195af78d","impliedFormat":1},{"version":"b6e17ead1f63a988977d55268fbc1f88f8455e07b4442ecaca86a6295b9bca0d","impliedFormat":1},{"version":"8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","impliedFormat":1},{"version":"5dae0892cddccaf9e5285453f1c97e78b9cf5e3be996f983fc56a63ac53b94d8","impliedFormat":1},{"version":"2d233a382de6a4ac120f49241f652a4f5631b08507ed6e031b7b00b9cc560b87","impliedFormat":1},{"version":"9ccc26dc5c86aaec692f30ae63b01c45765843bc4947e7d690ef57ea59544e8e","impliedFormat":1},{"version":"1e3aa45e69779b57f0d01a45a45d3665c26cea5759b6bb55c5e156b1c6f23c55","impliedFormat":1},{"version":"9c9216966405a82309678de0c1810ccce8d2a51dc766a521ace8954853573ee1","impliedFormat":1},{"version":"fb893a0dfc3c9fb0f9ca93d0648694dd95f33cbad2c0f2c629f842981dfd4e2e","impliedFormat":1},{"version":"3eb11dbf3489064a47a2e1cf9d261b1f100ef0b3b50ffca6c44dd99d6dd81ac1","impliedFormat":1},{"version":"38bfe41d54db874636648909bc36abe85c160ddebdf9c53913ad1f466e24ec84","impliedFormat":1},{"version":"1fcf0fb4160c9d2568d343c368282202d3c1882fdd2b08d54663ee7838924d53","impliedFormat":1},{"version":"3e08915d754e9fa1bccf3641c724ab9e8a50d4c301b80d7ace911e43eb298e54","impliedFormat":1},{"version":"ed19da84b7dbf00952ad0b98ce5c194f1903bcf7c94d8103e8e0d63b271543ae","impliedFormat":1},{"version":"380b919bfa0516118edaf25b99e45f855e7bc3fd75ce4163a1cfe4a666388804","impliedFormat":1},{"version":"0b24a72109c8dd1b41f94abfe1bb296ba01b3734b8ac632db2c48ffc5dccaf01","impliedFormat":1},{"version":"fcf79300e5257a23ed3bacaa6861d7c645139c6f7ece134d15e6669447e5e6db","impliedFormat":1},{"version":"187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","impliedFormat":1},{"version":"aa2c18a1b5a086bbcaae10a4efba409cc95ba7287d8cf8f2591b53704fea3dea","impliedFormat":1},{"version":"b88749bdb18fc1398370e33aa72bc4f88274118f4960e61ce26605f9b33c5ba2","impliedFormat":1},{"version":"0aaef8cded245bf5036a7a40b65622dd6c4da71f7a35343112edbe112b348a1e","impliedFormat":1},{"version":"00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","impliedFormat":1},{"version":"a873c50d3e47c21aa09fbe1e2023d9a44efb07cc0cb8c72f418bf301b0771fd3","impliedFormat":1},{"version":"7c14ccd2eaa82619fffc1bfa877eb68a012e9fb723d07ee98db451fadb618906","impliedFormat":1},{"version":"49c36529ee09ea9ce19525af5bb84985ea8e782cb7ee8c493d9e36d027a3d019","impliedFormat":1},{"version":"df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9","impliedFormat":1},{"version":"4f6a12044ee6f458db11964153830abbc499e73d065c51c329ec97407f4b13dd","impliedFormat":1},{"version":"8c7bb1d03e5607e5ad3d27f48e53dbe70b61372ea73d75000c9ead7ad2ac0fbd","impliedFormat":1},{"version":"5a03d90a285f2c0849d2cedd969cd01f801b8f44308d77c86aa4b75130d088b7","impliedFormat":1},{"version":"d5960343e19e2a78a1dc78a6cee39e2a9d857d4a241180e45f1fd36367495386","impliedFormat":1},{"version":"c0264ca644cd14781acbd942ee3615d2b9810f4e6e6d86e0e14a1dbac8d8cdaa","impliedFormat":1},{"version":"1458833def0c60d8548148fc08d9ca95fa0011c7bf96045ce38065c5c4d48047","impliedFormat":1},{"version":"de9471b25f19b3943df51928960abdd900fa8da30deb581c246c0dbec810c9de","impliedFormat":1},{"version":"d3aca2ab5ac0fdfd53191f44a2d440505c7bf73c1c93bb113d8ffbc37b62869c","impliedFormat":1},{"version":"89130764456b26a6fa46de5ef6ea42b6a3cbaa62e6bc0cb25757a7c43cb00d34","impliedFormat":1},{"version":"f01b36721e9be97fb7254863ccadd3c417a4fba4767e97650768588ad07c22b9","impliedFormat":1},{"version":"8b054be2a316e12dbc5f6305a3c8a96332f5951fb52c5fcef761bcda54ebeb2b","impliedFormat":1},{"version":"4b3dab4da88ad7d3c495b1f7aa0c5a3991c0437a97f7a1aab43ec182f74a6bfc","impliedFormat":1},{"version":"978260b11b03c868dff66b9862422bfda618002a94df75e76b8df2d6d8d4740c","impliedFormat":1},{"version":"a303777c4a10e5e75143415e08babaf3f24bc8927dd073652b1087fcaf2de50a","impliedFormat":1},{"version":"b3982a9cfd8798be0caead4ab7062a46cce8376920d20856453a2622ad1420bf","impliedFormat":1},{"version":"3da542e69e5c0bef96b479a9cc4824fe6549e263b469b2f5a2c5f82c05c498e1","impliedFormat":1},"d3a865e0c77656b2f63b5c83cbeef97509fe03705d908ca541a0a77bd21f1f2b",{"version":"e54572d9d33385dcafafeeb2640d0c7a2838db00be5214dbd582b2f46f1b9324","impliedFormat":1},{"version":"3d09a8b49c119963b8b9bd830798133206965a38ea4757e8fe8bfccb3238b6aa","impliedFormat":1},{"version":"81a466460fc5a4e14eda785ec4f7c7b40995939453574b4f1057030f71dec595","impliedFormat":1},{"version":"a28ac3e717907284b3910b8e9b3f9844a4e0b0a861bea7b923e5adf90f620330","impliedFormat":1},{"version":"13b77ab19ef7aadd86a1e54f2f08ea23a6d74e102909e3c00d31f231ed040f62","impliedFormat":1},{"version":"b6d03c9cfe2cf0ba4c673c209fcd7c46c815b2619fd2aad59fc4229aaef2ed43","impliedFormat":1},{"version":"82e5a50e17833a10eb091923b7e429dc846d42f1c6161eb6beeb964288d98a15","impliedFormat":1},{"version":"670a76db379b27c8ff42f1ba927828a22862e2ab0b0908e38b671f0e912cc5ed","impliedFormat":1},{"version":"069bebfee29864e3955378107e243508b163e77ab10de6a5ee03ae06939f0bb9","impliedFormat":1},{"version":"d39269d2a3b969bfd48ad79da81bb50e42a55264756cdde09aff2f5b963f6a6f","impliedFormat":1},{"version":"ad007a83ba82282a5b081cd5d87213605d556e6892da8f61b61eb5ff89b9a74b","impliedFormat":1},{"version":"bfc85a8981d6c20a87cd5f1eba6afd3a5cad6673994f545a548bf0782fdd25f1","impliedFormat":1},{"version":"8294fd94e467ad144df9bbd0ff6a150f14f7fa473bb8524c05749bdec34d9b0e","impliedFormat":1},{"version":"10230a955a3fd41688645b2abb92b596bd0c1eae62e05a92c3825c3b34ad5234","impliedFormat":1},{"version":"af432edae5323b4da73e45059916c17a1dce5fe503ac8a480326d9cd7d908706","impliedFormat":1},{"version":"a1ac2bcfaf6e1c53f7c75b694c7a332ed1174096f14a539620f021502af5cca2","impliedFormat":1},{"version":"6a437ff229c33de0dfd6c805daa3d40376e4c060d2b94919f00c6cfc122b29a0","impliedFormat":1},{"version":"41e8ce7169dfdb101d8a157af387bd542172ec842e7bc407d9e47fdda59782fa","impliedFormat":1},{"version":"1a320316245a19c41eee34a2c8d3c669d5e048f44069ac8dc70a3b5a027bc30b","impliedFormat":1},{"version":"629e088d17a1ea44b725597f76d829345e5c5675806996b729fba51c800cd497","impliedFormat":1},{"version":"bf9188bb98c69d44281b5f165ee1064021334631c7d841ffaf459aeb0ac5f982","impliedFormat":1},{"version":"fea2403f4b1a2e2b1171b1d076bb0c69f9c32e417033ad70c458533b7a9a31e1","impliedFormat":1},{"version":"ee940b3dc76c388f05911e8741099926bff59c3cae046cd82deb5cc7d46e58a9","impliedFormat":1},{"version":"2b9254b674dacbfb0593309769e0ccfe8c14cc84632023aac540cb20c306ea16","impliedFormat":1},{"version":"0b87454679443c99368948bc46de64d8fe114ca547e5356cd8d9267f62fe99a9","impliedFormat":1},{"version":"1757eeacddd964919e64fccc69d9209ba893dacc3828ec7068541982dc9ab6d9","impliedFormat":1},{"version":"bd21b568e51ef0d60ba905004a549c316a5f8695ed6c2f95e72e5a35699cb28d","impliedFormat":1},{"version":"64ba746775d776e99f431dfe276827c90cf633b66d9c0328380d8b6cd27f62c9","impliedFormat":1},{"version":"54a529ddfbd61ea552ba963293ce43125a0e02852f2b16b19dcf4968547afa9c","impliedFormat":1},{"version":"bf3a14f808a3ca036c57622bc34ccbb42f338604ea82fe87692c8cf47be83c81","impliedFormat":1},{"version":"1929509da7d867b1864a1fc6303a5f532eaa745094aa64fe2a44dcc61d75bfb8","impliedFormat":1},{"version":"b554d6092f52572f5e2b6f07c7305860b2080aa9ae34258ad36e253e94be1b2c","impliedFormat":1},{"version":"745cd820a3379755cd5c98bcde85522b97dd112504da2169d563880e636004e9","impliedFormat":1},{"version":"a7ca8df4f2931bef2aa4118078584d84a0b16539598eaadf7dce9104dfaa381c","impliedFormat":1},{"version":"11443a1dcfaaa404c68d53368b5b818712b95dd19f188cab1669c39bee8b84b3","impliedFormat":1},{"version":"36977c14a7f7bfc8c0426ae4343875689949fb699f3f84ecbe5b300ebf9a2c55","impliedFormat":1},{"version":"7e28fe9086760dd4cb06b8e820b198425133be1a89664858303df1867d6a1663","impliedFormat":99},{"version":"82762d242a8555ff2bf2e1b5015acd8e79fddd2da34c02701c8154c3b8545cac","impliedFormat":1},{"version":"0d75f630342af7931c6d53725efc4a3ff3d9ce46745d8a75f50fd65ef3308138","impliedFormat":99},{"version":"b114e8c1498a3ef05dfc0a66b88cf589d44046260f8cc6e9de1cd51c5eca5ae4","impliedFormat":99},{"version":"093c588eb18a5bbf1a04bd0619003fc64ecd72fb6f3830c03710b64e450e0409","impliedFormat":99},{"version":"8717beec83682297e82ee371efc301179f7aadcc86bb2dee5948894b1e66274a","impliedFormat":99},{"version":"0d75f630342af7931c6d53725efc4a3ff3d9ce46745d8a75f50fd65ef3308138","impliedFormat":1},{"version":"b114e8c1498a3ef05dfc0a66b88cf589d44046260f8cc6e9de1cd51c5eca5ae4","impliedFormat":1},{"version":"e431740b4929fde7c2a32835a21c6cfe227989173c53e1405b732994f3061d18","impliedFormat":1},{"version":"8794aab4ced3b131c91deb244cc72795fe61a952ec37111a496b3d57b305a4f2","impliedFormat":1},{"version":"7d3e062a778b8f5ea4f0cac7e925e31f88e6739812ebc5f827474324a4048f14","impliedFormat":1},{"version":"67adde78c105ac2eb3fecf9a9f881f322422649d3d79cbe0d917597d7f7c77a6","impliedFormat":99},{"version":"161c8e0690c46021506e32fda85956d785b70f309ae97011fd27374c065cac9b","affectsGlobalScope":true,"impliedFormat":1},{"version":"e0864480ea083087d705f9405bd6bf59b795e8474c3447f0d6413b2bce535a09","impliedFormat":1},{"version":"fc02c40bbd5198d0db6a3a85b3181dd95a183f6b5d6f23860c73858a8cdea3ca","impliedFormat":1},{"version":"971f12a5fc236419ced0b7b9f23a53c1758233713f565635bbf4b85e2b23f55a","impliedFormat":99},{"version":"76de3321ce519928f1ff7d7a30391c0dc7374af20f81d9167919f038895b5cb0","impliedFormat":99},{"version":"094b9210da23b8711709b0535c59841186267bf6b83c1609aa9b515f830ab274","impliedFormat":99},{"version":"fbfbb4e99c6259ff5ccc4a5a62b3b63c0c8cae6e84737786c4a4c761c9a9de91","impliedFormat":99},{"version":"604887bbd5b0a93234ce882543a465f008636185c52e0f0353330e2bc38b03b6","impliedFormat":99},{"version":"32bf912173e8a9533631f9e9d8dc90a2ac7b52c2355611ddd886beab24dfd182","impliedFormat":99},{"version":"82695324abf7f3278b6d9f0582f4a544e8f7055c8cbe1065ab5cbacde1719c4c","impliedFormat":99},{"version":"43bba542e50e19241ec64bc13cfc0d9273e6198f36563cecad1f4e4b78ad47f3","impliedFormat":99},{"version":"b8cb3b69c0e8114f758bb8ef8efeef1cc80f8911bfd21126def73d2174ce479e","impliedFormat":99},{"version":"f582b0fcbf1eea9b318ab92fb89ea9ab2ebb84f9b60af89328a91155e1afce72","impliedFormat":1},{"version":"402e5c534fb2b85fa771170595db3ac0dd532112c8fa44fc23f233bc6967488b","impliedFormat":1},{"version":"8885cf05f3e2abf117590bbb951dcf6359e3e5ac462af1c901cfd24c6a6472e2","impliedFormat":1},{"version":"333caa2bfff7f06017f114de738050dd99a765c7eb16571c6d25a38c0d5365dc","impliedFormat":1},{"version":"e61df3640a38d535fd4bc9f4a53aef17c296b58dc4b6394fd576b808dd2fe5e6","impliedFormat":1},{"version":"459920181700cec8cbdf2a5faca127f3f17fd8dd9d9e577ed3f5f3af5d12a2e4","impliedFormat":1},{"version":"4719c209b9c00b579553859407a7e5dcfaa1c472994bd62aa5dd3cc0757eb077","impliedFormat":1},{"version":"7ec359bbc29b69d4063fe7dad0baaf35f1856f914db16b3f4f6e3e1bca4099fa","impliedFormat":1},{"version":"70790a7f0040993ca66ab8a07a059a0f8256e7bb57d968ae945f696cbff4ac7a","impliedFormat":1},{"version":"d1b9a81e99a0050ca7f2d98d7eedc6cda768f0eb9fa90b602e7107433e64c04c","impliedFormat":1},{"version":"a022503e75d6953d0e82c2c564508a5c7f8556fad5d7f971372d2d40479e4034","impliedFormat":1},{"version":"b215c4f0096f108020f666ffcc1f072c81e9f2f95464e894a5d5f34c5ea2a8b1","impliedFormat":1},{"version":"644491cde678bd462bb922c1d0cfab8f17d626b195ccb7f008612dc31f445d2d","impliedFormat":1},{"version":"dfe54dab1fa4961a6bcfba68c4ca955f8b5bbeb5f2ab3c915aa7adaa2eabc03a","impliedFormat":1},{"version":"1251d53755b03cde02466064260bb88fd83c30006a46395b7d9167340bc59b73","impliedFormat":1},{"version":"47865c5e695a382a916b1eedda1b6523145426e48a2eae4647e96b3b5e52024f","impliedFormat":1},{"version":"4cdf27e29feae6c7826cdd5c91751cc35559125e8304f9e7aed8faef97dcf572","impliedFormat":1},{"version":"331b8f71bfae1df25d564f5ea9ee65a0d847c4a94baa45925b6f38c55c7039bf","impliedFormat":1},{"version":"2a771d907aebf9391ac1f50e4ad37952943515eeea0dcc7e78aa08f508294668","impliedFormat":1},{"version":"0146fd6262c3fd3da51cb0254bb6b9a4e42931eb2f56329edd4c199cb9aaf804","impliedFormat":1},{"version":"183f480885db5caa5a8acb833c2be04f98056bdcc5fb29e969ff86e07efe57ab","impliedFormat":99},{"version":"f7eebe1b25040d805aefe8971310b805cd49b8602ec206d25b38dc48c542f165","impliedFormat":1},{"version":"a18642ddf216f162052a16cba0944892c4c4c977d3306a87cb673d46abbb0cbf","impliedFormat":1},{"version":"509f8efdfc5f9f6b52284170e8d7413552f02d79518d1db691ee15acc0088676","impliedFormat":1},{"version":"4ec16d7a4e366c06a4573d299e15fe6207fc080f41beac5da06f4af33ea9761e","impliedFormat":1},{"version":"960bd764c62ac43edc24eaa2af958a4b4f1fa5d27df5237e176d0143b36a39c6","affectsGlobalScope":true,"impliedFormat":1},{"version":"d07f535c4ed01b02fc68e5462bd55b84e823b7337ad74872777dabb1fa917b6c","impliedFormat":99},{"version":"1b43cc8ba4ea76c87df8144f03b45931d602af615459d41211a9807a552da183","impliedFormat":99},{"version":"59f8dc89b9e724a6a667f52cdf4b90b6816ae6c9842ce176d38fcc973669009e","affectsGlobalScope":true,"impliedFormat":1},{"version":"aef5f42b4e9d60fe3a179992308f6722eb131619bfee71e5bdd3bc8965e4939c","impliedFormat":99},{"version":"d3f2d715f57df3f04bf7b16dde01dec10366f64fce44503c92b8f78f614c1769","impliedFormat":1},{"version":"b78cd10245a90e27e62d0558564f5d9a16576294eee724a59ae21b91f9269e4a","impliedFormat":1},{"version":"3ce90993cc18eac40830dc096e89d1154bcb7506894f4681228de2558338cc6d","signature":"73579e22c39e3997101be489e9d6088328a850a6fca5f99c591c20a31994c0e0","impliedFormat":99},{"version":"d6975791f20923a97d336d9ca8be2f93a9f833787ccc33409d1b136a13be3492","signature":"0a1ff1a208e1b056b5854e6a9304230743d08d48b8e8c40ff0553a003d71434c","impliedFormat":99},{"version":"a0d13da6723605e5ea39afb213180256dc6c73a2bda9512c3e67fe0e06c7054d","signature":"c2ed123903a1ccd27b4df43d648579ecc04333752fb457e05cf65a4490c5cb2f","impliedFormat":99},{"version":"c6c8b78538814798cfc5ef11306e01748ee02331686e466f1ac38cb7ee798c7c","signature":"dbabfc5e3d191bb9e2c69feb1e032f39e8194147627c4645e90a8bf90fdfbe09","impliedFormat":99},{"version":"151ff381ef9ff8da2da9b9663ebf657eac35c4c9a19183420c05728f31a6761d","impliedFormat":1},{"version":"abc2a3d5e2d3dd761edf42f6b701d37ae9df764862acbee50a10871c5a4b7260","impliedFormat":1},{"version":"82762d242a8555ff2bf2e1b5015acd8e79fddd2da34c02701c8154c3b8545cac","impliedFormat":1},{"version":"1cabefdeaf56bd1bd82e9d017915f52bc66fa7e8fa0002a0f1099eec40562d44","impliedFormat":99},{"version":"b114e8c1498a3ef05dfc0a66b88cf589d44046260f8cc6e9de1cd51c5eca5ae4","impliedFormat":99},{"version":"9b7cfcdc534a2c1af43147bf1ad62ca08ceb1ca6566736cfe8dcf659b8799f0e","impliedFormat":99},{"version":"bd357cd0312e7b4b71ba0b61422e89e3c103bfd434671e8b5ce9226a0f218695","impliedFormat":99},{"version":"e05ff15557883de7290b3e780fe5f99d2b2c344cedabb29e5ad16e30eeeace2f","signature":"802e818c24ab9b2a38e7e26a1936b5d8f2951bb863cda1fba151060862929f80","impliedFormat":99},{"version":"fc37aca06f6b8b296c42412a2e75ab53d30cd1fa8a340a3bb328a723fd678377","impliedFormat":1},{"version":"5f2c582b9ef260cb9559a64221b38606378c1fabe17694592cdfe5975a6d7efa","impliedFormat":1},{"version":"03c258e060b7da220973f84b89615e4e9850e9b5d30b3a8e4840b3e3268ae8eb","impliedFormat":1},{"version":"fd20dfa2434a61a87e3fa9450f9de2ed2c365ea43b17b34ac6616d90d9681381","impliedFormat":1},{"version":"389303117a81e90897689e7adb4b53a062e68a6fe4067088fae9552907aa28c3","impliedFormat":1},{"version":"d4c4fe14b23180acf25e4a68dc3bb9e5c38233dd3de12a4ab9569e636090ac9b","affectsGlobalScope":true,"impliedFormat":1},{"version":"7c53d48b8b632e531bacb589d349082dda9a4653d1faa2bce0062b02ee7142b5","signature":"372b2cb6f42ef888e606ba27fee20a9cb1616b8944833d9985f0897dcadf9f7b","impliedFormat":99},{"version":"9571cc72a8cc7e4ea904bd6b9f809dc1c1c38b01f4375264cd85b638f06b0dd1","signature":"5cfeaf249b01371d633a91d560af77e1c9a1d4c4b27817ddeecee28e3136a75e","impliedFormat":99},{"version":"88623aa2028777d8f073c61590feb7f3abde4513918329d868c8c0cb38d2d000","affectsGlobalScope":true,"impliedFormat":1},{"version":"074d6ab080bdcf0ea7100f880d8c33a303a477ebcd2e419d0db657fe7dc6e092","impliedFormat":99},{"version":"fa06c67564e2239dab79347590a602935cdd8f3f7fb1b735eba2fcd6ee3f967a","signature":"ec92aa77b9320508db41c21a471cc5a35d51b9a58f5f1674c82f2f3cd988c182","impliedFormat":99},{"version":"3d67c4a8d86101c16d837f3a881bb6dc00a7f37d902be422668990f05393453c","impliedFormat":1},{"version":"c273363b032a79e69f0f70dc14ea1838ffbd06a1825bd8c661ba94ac90d71e23","signature":"d49126e2249f2896bb3b5f46f27a2e4cbaa52a5bb2e59fea8e857e2b2726e9df","impliedFormat":99},{"version":"d5a703fa18b967789d212dcd73ceeb62eaf3bf32a3170aa0e74e1a8964bef863","impliedFormat":1},{"version":"b07a2af67ad692bc3d1b59ab0d6c19c272c22bf4817ce1c8581ad1f94366ce24","impliedFormat":1},{"version":"0fd2c1e3cc4ec7435a6b4bc378aa7a6cc0ba11dd7149be4e4dc859f0593be844","signature":"18526b6f14869e5fb1621c20b104202da1ef315ad0504b5f9a4938d407aeed23","impliedFormat":99},{"version":"19fed314e0aa1fbff1c63f4158ff8a85f661f698de8c3c4ad0d93da1cb9f6f4f","signature":"198ab496c8f1c45a06555b0f12cf124af419cee343cfbee8d01603b805251309","impliedFormat":99},{"version":"feab7fc55f4eb4ef127b37d21077cba865978fd2ff330b19e6e43279f91d305d","signature":"5a053a99905f1f02360b0c066ecb90d7e0fe45fb2823a8fe8ee9309a16d4064e","impliedFormat":99},{"version":"0b88661e2639ed09162cecf604377305111fe1be0b37e4bc7c5dc50dc4a2fcc8","signature":"7cdbce6a8c67a581be3c06a8cdcba31595b99d4000ca17c8bdf91c55c8d5c683","impliedFormat":99},{"version":"9a54b60af76bea05b1f37edd50f121ab61fa3096489d993b822438ec4972629a","signature":"88f591c4faafe4a52280d58f4fc299b606b0b9087ea651430bb7b1488556ca0f","impliedFormat":99},{"version":"f7f8b6edf07e78e260e5933a24a4c1ab4b857ca33523922f198542030a753bd8","signature":"d55c70ca5a5a36b412921fe342d98677dbedfff4577a4691126eee61febeb4e7","impliedFormat":99},{"version":"49f72c8689b1ac2ae0bd393fda181a7cbb98586d8741a8331c1c41964fcabca2","impliedFormat":99},{"version":"3bfcf4742399559f7b4aaa490aa2635ef325b224992f7d81b0be07c73c5ea474","impliedFormat":1},{"version":"b25a1d6e2552304e009260a81c12a9b47858b0f577d09d48c508de72cfd27bee","impliedFormat":1},{"version":"1a9cec9b158710d2cde853c8fcf2b975aba0039ced3d3d6c6ab1dd5f3773370f","impliedFormat":1},{"version":"52550c1a63840a0839253a8940a16286cc7e84ee809b4252340075f44a8369b2","impliedFormat":1},{"version":"1eb2441c0efffc5fb95bdf3c6202aae8ac9c8b8f77eab6df4bb48a3a48df52cf","impliedFormat":1},{"version":"4d1e0aa275bcc14b4ca3a8a8fa7a648f438f26737bf7990932082f7d9619c6fd","impliedFormat":1},{"version":"d21f0dfcfe7014fb628366d9dd7600d05844b3fc230a348beb31dbab4f88ebe5","impliedFormat":1},{"version":"3966afedbec4d84c1d3996a781ae1e7d6619031017a93ec3cf9e713a898ec51f","impliedFormat":1},{"version":"08200806e2d6c767e37b8e78d64d23b37cfece4a43b46d04479e0935c8879039","impliedFormat":1},{"version":"cdcc132f207d097d7d3aa75615ab9a2e71d6a478162dde8b67f88ea19f3e54de","impliedFormat":1},{"version":"0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","impliedFormat":1},{"version":"c085e9aa62d1ae1375794c1fb927a445fa105fed891a7e24edbb1c3300f7384a","impliedFormat":1},{"version":"f315e1e65a1f80992f0509e84e4ae2df15ecd9ef73df975f7c98813b71e4c8da","impliedFormat":1},{"version":"5b9586e9b0b6322e5bfbd2c29bd3b8e21ab9d871f82346cb71020e3d84bae73e","impliedFormat":1},{"version":"3e70a7e67c2cb16f8cd49097360c0309fe9d1e3210ff9222e9dac1f8df9d4fb6","impliedFormat":1},{"version":"ab68d2a3e3e8767c3fba8f80de099a1cfc18c0de79e42cb02ae66e22dfe14a66","impliedFormat":1},{"version":"d96cc6598148bf1a98fb2e8dcf01c63a4b3558bdaec6ef35e087fd0562eb40ec","impliedFormat":1},{"version":"f8db4fea512ab759b2223b90ecbbe7dae919c02f8ce95ec03f7fb1cf757cfbeb","affectsGlobalScope":true,"impliedFormat":1}],"root":[[291,294],302,309,310,313,315,[318,324]],"options":{"allowUnreachableCode":false,"composite":true,"declaration":true,"esModuleInterop":true,"experimentalDecorators":true,"inlineSources":true,"module":199,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","skipLibCheck":true,"sourceMap":true,"strict":true,"target":6,"useUnknownInCatchVariables":false},"referencedMap":[[205,1],[202,2],[334,2],[337,3],[256,4],[254,2],[255,5],[257,6],[252,7],[250,2],[253,8],[251,9],[297,2],[236,2],[299,2],[242,2],[238,2],[296,10],[336,2],[207,11],[204,1],[206,12],[203,1],[165,13],[295,2],[169,14],[342,15],[200,2],[306,16],[308,17],[307,18],[171,19],[172,20],[170,21],[173,22],[174,23],[175,24],[176,25],[177,26],[178,27],[179,28],[180,29],[181,30],[189,31],[183,31],[182,32],[289,2],[158,2],[164,2],[103,33],[104,33],[105,34],[63,35],[106,36],[107,37],[108,38],[58,2],[61,39],[59,2],[60,2],[109,40],[110,41],[111,42],[112,43],[113,44],[114,45],[115,45],[117,2],[116,46],[118,47],[119,48],[120,49],[102,50],[62,2],[121,51],[122,52],[123,53],[156,54],[124,55],[125,56],[126,57],[127,58],[128,59],[129,60],[130,61],[131,62],[132,63],[133,64],[134,64],[135,65],[136,2],[137,2],[138,66],[140,67],[139,68],[141,69],[142,70],[143,71],[144,72],[145,73],[146,74],[147,75],[148,76],[149,77],[150,78],[151,79],[152,80],[153,81],[154,82],[155,83],[304,84],[303,85],[290,86],[305,2],[316,2],[208,87],[54,2],[157,14],[161,88],[57,2],[312,89],[311,2],[64,2],[335,2],[314,2],[198,2],[247,2],[341,90],[160,91],[214,2],[339,92],[340,93],[280,2],[282,94],[281,2],[215,95],[276,96],[274,97],[275,98],[263,99],[264,97],[271,100],[262,101],[267,102],[277,2],[268,103],[273,104],[279,105],[278,106],[261,107],[269,108],[270,109],[265,110],[272,96],[266,111],[338,112],[186,113],[185,2],[187,114],[212,2],[235,115],[288,116],[233,117],[232,2],[234,118],[287,2],[284,2],[248,119],[283,120],[245,121],[259,122],[249,123],[301,124],[298,125],[300,126],[285,127],[286,128],[244,129],[240,127],[246,130],[237,131],[241,131],[239,132],[243,133],[260,2],[258,134],[168,2],[49,2],[50,2],[10,2],[8,2],[9,2],[14,2],[13,2],[2,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[22,2],[3,2],[23,2],[24,2],[4,2],[25,2],[29,2],[26,2],[27,2],[28,2],[30,2],[31,2],[32,2],[5,2],[33,2],[34,2],[35,2],[36,2],[6,2],[51,2],[40,2],[37,2],[38,2],[39,2],[41,2],[7,2],[42,2],[47,2],[48,2],[43,2],[44,2],[45,2],[46,2],[1,2],[12,2],[11,2],[80,135],[90,136],[79,135],[100,137],[71,138],[70,139],[99,140],[93,141],[98,142],[73,143],[87,144],[72,145],[96,146],[68,147],[67,140],[97,148],[69,149],[74,150],[75,2],[78,150],[65,2],[101,151],[91,152],[82,153],[83,154],[85,155],[81,156],[84,157],[94,140],[76,158],[77,159],[86,160],[66,161],[89,152],[88,150],[92,2],[95,162],[159,163],[222,164],[53,165],[231,166],[163,2],[166,167],[226,168],[228,164],[229,169],[227,170],[56,2],[52,2],[230,171],[55,172],[225,173],[223,174],[224,171],[219,175],[218,175],[221,175],[220,175],[162,176],[317,2],[210,177],[213,178],[211,179],[197,180],[199,181],[184,2],[201,182],[217,183],[167,2],[188,184],[194,59],[190,185],[191,186],[193,187],[209,188],[195,189],[216,190],[192,191],[324,192],[291,193],[292,167],[293,194],[294,195],[313,196],[310,197],[322,198],[320,199],[321,200],[302,201],[323,202],[318,203],[319,204],[309,205],[315,206],[326,207],[327,2],[196,207],[328,2],[325,2],[329,2],[330,2],[331,2],[332,2],[333,2]],"latestChangedDtsFile":"./index.d.ts","version":"5.9.2"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@embroider/vite",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "https://github.com/embroider-build/embroider.git",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
},
|
|
16
16
|
"peerDependencies": {
|
|
17
17
|
"vite": ">= 5.2.0",
|
|
18
|
-
"@embroider/core": "^4.1.
|
|
18
|
+
"@embroider/core": "^4.1.3"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@babel/core": "^7.22.9",
|
|
@@ -31,19 +31,20 @@
|
|
|
31
31
|
"send": "^0.18.0",
|
|
32
32
|
"source-map-url": "^0.4.1",
|
|
33
33
|
"terser": "^5.7.0",
|
|
34
|
-
"@embroider/
|
|
35
|
-
"@embroider/
|
|
34
|
+
"@embroider/reverse-exports": "0.1.2",
|
|
35
|
+
"@embroider/macros": "1.18.1"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
|
+
"@rollup/plugin-babel": "^5.3.1",
|
|
38
39
|
"@types/babel__core": "^7.20.1",
|
|
39
40
|
"@types/debug": "^4.1.5",
|
|
40
41
|
"@types/fs-extra": "^9.0.12",
|
|
41
42
|
"@types/jsdom": "^16.2.11",
|
|
42
43
|
"@types/send": "^0.17.4",
|
|
43
44
|
"esbuild": "^0.25.0",
|
|
44
|
-
"rollup": "
|
|
45
|
-
"vite": "
|
|
46
|
-
"@embroider/core": "^4.1.
|
|
45
|
+
"rollup": "npm:rolldown@1.0.0-beta.29",
|
|
46
|
+
"vite": "npm:rolldown-vite@^7.0.0",
|
|
47
|
+
"@embroider/core": "^4.1.3"
|
|
47
48
|
},
|
|
48
49
|
"files": [
|
|
49
50
|
"dist"
|