@typed/vite-plugin 0.0.16 → 0.0.17
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/vite-plugin.d.ts +5 -1
- package/dist/vite-plugin.d.ts.map +1 -1
- package/dist/vite-plugin.js +91 -122
- package/dist/vite-plugin.js.map +1 -1
- package/package.json +5 -4
- package/src/vite-plugin.ts +125 -180
- package/tsconfig.build.tsbuildinfo +1 -1
package/dist/vite-plugin.d.ts
CHANGED
|
@@ -34,6 +34,10 @@ export interface PluginOptions {
|
|
|
34
34
|
* effectTsOptions.debug is provided it will override this value.
|
|
35
35
|
*/
|
|
36
36
|
readonly debug?: boolean;
|
|
37
|
+
/**
|
|
38
|
+
* If true, will configure the plugin to save all the generated files to disk
|
|
39
|
+
*/
|
|
40
|
+
readonly saveGeneratedModules?: boolean;
|
|
37
41
|
}
|
|
38
|
-
export default function makePlugin({ sourceDirectory: directory, tsConfig, serverFilePath, clientOutputDirectory, serverOutputDirectory, htmlFileGlobs, debug, }: PluginOptions): PluginOption[];
|
|
42
|
+
export default function makePlugin({ sourceDirectory: directory, tsConfig, serverFilePath, clientOutputDirectory, serverOutputDirectory, htmlFileGlobs, debug, saveGeneratedModules, }: PluginOptions): PluginOption[];
|
|
39
43
|
//# sourceMappingURL=vite-plugin.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"vite-plugin.d.ts","sourceRoot":"","sources":["../src/vite-plugin.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"vite-plugin.d.ts","sourceRoot":"","sources":["../src/vite-plugin.ts"],"names":[],"mappings":"AAgBA,OAAO,KAAK,EAAqB,YAAY,EAA6B,MAAM,MAAM,CAAA;AAItF;;;GAGG;AACH,MAAM,WAAW,aAAa;IAC5B;;;OAGG;IACH,QAAQ,CAAC,eAAe,EAAE,MAAM,CAAA;IAEhC;;OAEG;IACH,QAAQ,CAAC,QAAQ,CAAC,EAAE,MAAM,CAAA;IAE1B;;OAEG;IACH,QAAQ,CAAC,cAAc,CAAC,EAAE,MAAM,CAAA;IAEhC;;OAEG;IACH,QAAQ,CAAC,qBAAqB,CAAC,EAAE,MAAM,CAAA;IAEvC;;OAEG;IACH,QAAQ,CAAC,qBAAqB,CAAC,EAAE,MAAM,CAAA;IAEvC;;OAEG;IACH,QAAQ,CAAC,aAAa,CAAC,EAAE,SAAS,MAAM,EAAE,CAAA;IAE1C;;;OAGG;IACH,QAAQ,CAAC,KAAK,CAAC,EAAE,OAAO,CAAA;IAExB;;OAEG;IACH,QAAQ,CAAC,oBAAoB,CAAC,EAAE,OAAO,CAAA;CACxC;AAYD,MAAM,CAAC,OAAO,UAAU,UAAU,CAAC,EACjC,eAAe,EAAE,SAAS,EAC1B,QAAQ,EACR,cAAc,EACd,qBAAqB,EACrB,qBAAqB,EACrB,aAAa,EACb,KAAa,EACb,oBAA4B,GAC7B,EAAE,aAAa,GAAG,YAAY,EAAE,CAyUhC"}
|
package/dist/vite-plugin.js
CHANGED
|
@@ -2,7 +2,7 @@ import { existsSync } from 'fs';
|
|
|
2
2
|
import { readFile } from 'fs/promises';
|
|
3
3
|
import { basename, dirname, join, relative, resolve } from 'path';
|
|
4
4
|
import effectTransformer from '@effect/language-service/transformer';
|
|
5
|
-
import { setupTsProject,
|
|
5
|
+
import { setupTsProject, makeHtmlModule, makeRuntimeModule, readDirectory, readModules, } from '@typed/compiler';
|
|
6
6
|
import glob from 'fast-glob';
|
|
7
7
|
import { Project, SourceFile, ts } from 'ts-morph';
|
|
8
8
|
// @ts-expect-error Unable to resolve types w/ NodeNext
|
|
@@ -15,7 +15,7 @@ const RUNTIME_VIRTUAL_ENTRYPOINT_PREFIX = 'runtime';
|
|
|
15
15
|
const BROWSER_VIRTUAL_ENTRYPOINT_PREFIX = 'browser';
|
|
16
16
|
const HTML_VIRTUAL_ENTRYPOINT_PREFIX = 'html';
|
|
17
17
|
const VIRTUAL_ID_PREFIX = '\0';
|
|
18
|
-
export default function makePlugin({ sourceDirectory: directory, tsConfig, serverFilePath, clientOutputDirectory, serverOutputDirectory, htmlFileGlobs, debug, }) {
|
|
18
|
+
export default function makePlugin({ sourceDirectory: directory, tsConfig, serverFilePath, clientOutputDirectory, serverOutputDirectory, htmlFileGlobs, debug = false, saveGeneratedModules = false, }) {
|
|
19
19
|
// Resolved options
|
|
20
20
|
const sourceDirectory = resolve(cwd, directory);
|
|
21
21
|
const tsConfigFilePath = resolve(sourceDirectory, tsConfig ?? 'tsconfig.json');
|
|
@@ -31,9 +31,8 @@ export default function makePlugin({ sourceDirectory: directory, tsConfig, serve
|
|
|
31
31
|
optimize: defaultIncludeExcludeTs,
|
|
32
32
|
debug: debug ? defaultIncludeExcludeTs : {},
|
|
33
33
|
};
|
|
34
|
-
const virtualIds = new Set();
|
|
35
34
|
const dependentsMap = new Map();
|
|
36
|
-
const
|
|
35
|
+
const filePathToModule = new Map();
|
|
37
36
|
let devServer;
|
|
38
37
|
let project;
|
|
39
38
|
let transformers;
|
|
@@ -52,8 +51,11 @@ export default function makePlugin({ sourceDirectory: directory, tsConfig, serve
|
|
|
52
51
|
: []),
|
|
53
52
|
];
|
|
54
53
|
const setupProject = () => {
|
|
54
|
+
if (project) {
|
|
55
|
+
return;
|
|
56
|
+
}
|
|
55
57
|
info(`Setting up TypeScript project...`);
|
|
56
|
-
|
|
58
|
+
project = setupTsProject(tsConfigFilePath);
|
|
57
59
|
info(`Setup TypeScript project.`);
|
|
58
60
|
// Setup transformer for virtual modules.
|
|
59
61
|
transformers = {
|
|
@@ -62,7 +64,13 @@ export default function makePlugin({ sourceDirectory: directory, tsConfig, serve
|
|
|
62
64
|
effectTransformer(project.getProgram().compilerObject, resolvedEffectTsOptions).before,
|
|
63
65
|
],
|
|
64
66
|
};
|
|
65
|
-
|
|
67
|
+
};
|
|
68
|
+
const transpilerCompilerOptions = () => {
|
|
69
|
+
setupProject();
|
|
70
|
+
return {
|
|
71
|
+
...project.getCompilerOptions(),
|
|
72
|
+
allowJs: true,
|
|
73
|
+
};
|
|
66
74
|
};
|
|
67
75
|
const handleFileChange = async (path, event) => {
|
|
68
76
|
if (/\.tsx?$/.test(path)) {
|
|
@@ -82,10 +90,9 @@ export default function makePlugin({ sourceDirectory: directory, tsConfig, serve
|
|
|
82
90
|
if (devServer) {
|
|
83
91
|
const dependents = dependentsMap.get(path.replace(/.ts(x)?/, '.js$1'));
|
|
84
92
|
for (const dependent of dependents ?? []) {
|
|
85
|
-
const
|
|
86
|
-
const mod = devServer.moduleGraph.getModuleById(id);
|
|
93
|
+
const mod = devServer.moduleGraph.getModuleById(dependent);
|
|
87
94
|
if (mod) {
|
|
88
|
-
info(`reloading ${
|
|
95
|
+
info(`reloading ${dependent}`);
|
|
89
96
|
await devServer.reloadModule(mod);
|
|
90
97
|
}
|
|
91
98
|
}
|
|
@@ -99,9 +106,59 @@ export default function makePlugin({ sourceDirectory: directory, tsConfig, serve
|
|
|
99
106
|
}
|
|
100
107
|
}
|
|
101
108
|
};
|
|
109
|
+
const buildRenderModule = async (importer, id) => {
|
|
110
|
+
const moduleDirectory = resolve(dirname(importer), parseModulesFromId(id, importer));
|
|
111
|
+
const relativeDirectory = relative(sourceDirectory, moduleDirectory);
|
|
112
|
+
const isBrowser = id.startsWith(BROWSER_VIRTUAL_ENTRYPOINT_PREFIX);
|
|
113
|
+
const moduleType = isBrowser ? 'browser' : 'runtime';
|
|
114
|
+
const filePath = `${moduleDirectory}.${moduleType}.__generated__.ts`;
|
|
115
|
+
info(`Building ${moduleType} module for ${relativeDirectory}...`);
|
|
116
|
+
const directory = await readDirectory(moduleDirectory);
|
|
117
|
+
const moduleTree = readModules(project, directory);
|
|
118
|
+
// Setup the TypeScript project if it hasn't been already
|
|
119
|
+
setupProject();
|
|
120
|
+
const sourceFile = makeRuntimeModule(project, moduleTree, importer, filePath, isBrowser);
|
|
121
|
+
info(`Built ${moduleType} module for ${relativeDirectory}.`);
|
|
122
|
+
filePathToModule.set(filePath, sourceFile);
|
|
123
|
+
if (saveGeneratedModules) {
|
|
124
|
+
await sourceFile.save();
|
|
125
|
+
}
|
|
126
|
+
return filePath;
|
|
127
|
+
};
|
|
128
|
+
const buildHtmlModule = async (importer, id) => {
|
|
129
|
+
const htmlFileName = parseModulesFromId(id, importer);
|
|
130
|
+
const htmlFilePath = resolve(dirname(importer), htmlFileName + '.html');
|
|
131
|
+
const relativeHtmlFilePath = relative(sourceDirectory, htmlFilePath);
|
|
132
|
+
let html = '';
|
|
133
|
+
info(`Building html module for ${relativeHtmlFilePath}...`);
|
|
134
|
+
// If there's a dev server, use it to transform the HTML for development
|
|
135
|
+
if (devServer) {
|
|
136
|
+
html = (await readFile(htmlFilePath, 'utf-8')).toString();
|
|
137
|
+
html = await devServer.transformIndexHtml(getRelativePath(sourceDirectory, htmlFilePath), html);
|
|
138
|
+
}
|
|
139
|
+
else {
|
|
140
|
+
// Otherwise, read the already transformed file from the output directory.
|
|
141
|
+
html = (await readFile(resolve(resolvedClientOutputDirectory, relativeHtmlFilePath), 'utf-8')).toString();
|
|
142
|
+
}
|
|
143
|
+
const sourceFile = await makeHtmlModule({
|
|
144
|
+
project,
|
|
145
|
+
filePath: htmlFilePath,
|
|
146
|
+
html,
|
|
147
|
+
importer,
|
|
148
|
+
serverOutputDirectory: resolvedServerOutputDirectory,
|
|
149
|
+
clientOutputDirectory: resolvedClientOutputDirectory,
|
|
150
|
+
devServer,
|
|
151
|
+
});
|
|
152
|
+
info(`Built html module for ${relativeHtmlFilePath}.`);
|
|
153
|
+
const filePath = sourceFile.getFilePath();
|
|
154
|
+
filePathToModule.set(filePath, sourceFile);
|
|
155
|
+
if (saveGeneratedModules) {
|
|
156
|
+
await sourceFile.save();
|
|
157
|
+
}
|
|
158
|
+
return filePath;
|
|
159
|
+
};
|
|
102
160
|
const virtualModulePlugin = {
|
|
103
161
|
name: PLUGIN_NAME,
|
|
104
|
-
enforce: 'pre',
|
|
105
162
|
config(config, env) {
|
|
106
163
|
// Configure Build steps when running with vavite
|
|
107
164
|
if (env.mode === 'multibuild') {
|
|
@@ -162,72 +219,34 @@ export default function makePlugin({ sourceDirectory: directory, tsConfig, serve
|
|
|
162
219
|
}
|
|
163
220
|
},
|
|
164
221
|
async resolveId(id, importer) {
|
|
165
|
-
if (
|
|
166
|
-
|
|
167
|
-
virtualIds.add(virtualId);
|
|
168
|
-
return virtualId;
|
|
222
|
+
if (!importer) {
|
|
223
|
+
return;
|
|
169
224
|
}
|
|
170
|
-
if (id.startsWith(
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
return
|
|
225
|
+
if (id.startsWith(RUNTIME_VIRTUAL_ENTRYPOINT_PREFIX) ||
|
|
226
|
+
id.startsWith(BROWSER_VIRTUAL_ENTRYPOINT_PREFIX)) {
|
|
227
|
+
setupProject();
|
|
228
|
+
return VIRTUAL_ID_PREFIX + (await buildRenderModule(importer, id));
|
|
174
229
|
}
|
|
175
230
|
if (id.startsWith(HTML_VIRTUAL_ENTRYPOINT_PREFIX)) {
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
return virtualId;
|
|
231
|
+
setupProject();
|
|
232
|
+
return VIRTUAL_ID_PREFIX + (await buildHtmlModule(importer, id));
|
|
179
233
|
}
|
|
234
|
+
importer = importer.replace(VIRTUAL_ID_PREFIX, '');
|
|
180
235
|
// Virtual modules have problems with resolving relative paths due to not
|
|
181
236
|
// having a real directory to work with thus the need to resolve them manually.
|
|
182
|
-
if (importer
|
|
237
|
+
if (filePathToModule.has(importer) && id.startsWith('.')) {
|
|
183
238
|
return findRelativeFile(importer, id);
|
|
184
239
|
}
|
|
185
240
|
},
|
|
186
241
|
async load(id) {
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
sourceFilePathToVirtualId.set(filePath, id);
|
|
196
|
-
// If we're in a development evnironment, we need to track the dependencies of
|
|
197
|
-
// our virtual module so we can reload them when they change.
|
|
198
|
-
if (devServer) {
|
|
199
|
-
const importModuleSpecifiers = await Promise.all(sourceFile.getLiteralsReferencingOtherSourceFiles().map((l) => l.getLiteralText()));
|
|
200
|
-
for (const specifier of importModuleSpecifiers) {
|
|
201
|
-
let resolved =
|
|
202
|
-
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
|
203
|
-
(await virtualModulePlugin.resolveId.apply(this, [specifier, filePath])) || specifier;
|
|
204
|
-
if (resolved.startsWith('.')) {
|
|
205
|
-
resolved = resolve(dirname(filePath), resolved);
|
|
206
|
-
}
|
|
207
|
-
const current = dependentsMap.get(resolved) ?? new Set();
|
|
208
|
-
current.add(filePath);
|
|
209
|
-
dependentsMap.set(resolved, current);
|
|
210
|
-
}
|
|
211
|
-
}
|
|
212
|
-
logDiagnostics(project, sourceFile, sourceDirectory, filePath);
|
|
213
|
-
const output = ts.transpileModule(sourceFile.getFullText(), {
|
|
214
|
-
compilerOptions: project.getCompilerOptions(),
|
|
215
|
-
transformers,
|
|
216
|
-
});
|
|
217
|
-
return {
|
|
218
|
-
code: output.outputText,
|
|
219
|
-
map: output.sourceMapText,
|
|
220
|
-
moduleSideEffects: false,
|
|
221
|
-
};
|
|
222
|
-
}
|
|
223
|
-
else if (/\.tsx?$/.test(id)) {
|
|
224
|
-
if (!project) {
|
|
225
|
-
project = setupProject();
|
|
226
|
-
}
|
|
227
|
-
const sourceFile = project.getSourceFile(id) ??
|
|
228
|
-
project.createSourceFile(id, await readFile(id).then((b) => b.toString()));
|
|
229
|
-
const output = ts.transpileModule(sourceFile.getFullText(), {
|
|
230
|
-
compilerOptions: project.getCompilerOptions(),
|
|
242
|
+
id = id.replace(VIRTUAL_ID_PREFIX, '');
|
|
243
|
+
const sourceFile = filePathToModule.get(id) ?? project?.getSourceFile(id);
|
|
244
|
+
if (sourceFile) {
|
|
245
|
+
logDiagnostics(project, sourceFile, sourceDirectory, id);
|
|
246
|
+
const text = sourceFile.getFullText();
|
|
247
|
+
const output = ts.transpileModule(text, {
|
|
248
|
+
fileName: id,
|
|
249
|
+
compilerOptions: transpilerCompilerOptions(),
|
|
231
250
|
transformers,
|
|
232
251
|
});
|
|
233
252
|
return {
|
|
@@ -236,14 +255,11 @@ export default function makePlugin({ sourceDirectory: directory, tsConfig, serve
|
|
|
236
255
|
};
|
|
237
256
|
}
|
|
238
257
|
},
|
|
239
|
-
transform(
|
|
240
|
-
if (
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
const sourceFile = project.getSourceFile(id) ?? project.createSourceFile(id, code);
|
|
245
|
-
const output = ts.transpileModule(sourceFile.getFullText(), {
|
|
246
|
-
compilerOptions: project.getCompilerOptions(),
|
|
258
|
+
transform(text, id) {
|
|
259
|
+
if (/.tsx?$/.test(id) || /.m?jsx?$/.test(id)) {
|
|
260
|
+
const output = ts.transpileModule(text, {
|
|
261
|
+
fileName: id,
|
|
262
|
+
compilerOptions: transpilerCompilerOptions(),
|
|
247
263
|
transformers,
|
|
248
264
|
});
|
|
249
265
|
return {
|
|
@@ -267,52 +283,8 @@ function logDiagnostics(project, sourceFile, sourceDirectory, filePath) {
|
|
|
267
283
|
info(`${relativeFilePath} module successfuly typed-checked.`);
|
|
268
284
|
}
|
|
269
285
|
}
|
|
270
|
-
async function buildVirtualModule(project, id, sourceDirectory, serverOutputDirectory, clientOutputDirectory, devServer) {
|
|
271
|
-
// Parse our virtual ID into the original importer and whatever query was passed to it
|
|
272
|
-
const [importer, query] = id.split(VIRTUAL_ID_PREFIX)[1].split('?');
|
|
273
|
-
// If the query is for a runtime module, read the directory and transform it into a module.
|
|
274
|
-
if (query.includes('modules=')) {
|
|
275
|
-
const moduleDirectory = resolve(dirname(importer), query.split('modules=')[1].split('&')[0]);
|
|
276
|
-
const relativeDirectory = relative(sourceDirectory, moduleDirectory);
|
|
277
|
-
const directory = await readDirectory(moduleDirectory);
|
|
278
|
-
const moduleTree = readModules(project, directory);
|
|
279
|
-
const isBrowser = query.includes('&browser');
|
|
280
|
-
info(`Building ${isBrowser ? 'browser' : 'runtime'} module for ${relativeDirectory}...`);
|
|
281
|
-
const mod = isBrowser
|
|
282
|
-
? makeBrowserModule(project, moduleTree, importer)
|
|
283
|
-
: makeRuntimeModule(project, moduleTree, importer);
|
|
284
|
-
info(`Built ${isBrowser ? 'browser' : 'runtime'} module for ${relativeDirectory}.`);
|
|
285
|
-
return mod;
|
|
286
|
-
}
|
|
287
|
-
// If the query is for an HTML file, read the file and transform it into a module.
|
|
288
|
-
const htmlFile = query.split('source=')[1];
|
|
289
|
-
const htmlFilePath = resolve(dirname(importer), htmlFile + '.html');
|
|
290
|
-
const relativeHtmlFilePath = relative(sourceDirectory, htmlFilePath);
|
|
291
|
-
let html = '';
|
|
292
|
-
info(`Building html module for ${relativeHtmlFilePath}...`);
|
|
293
|
-
// If there's a dev server, use it to transform the HTML for development
|
|
294
|
-
if (devServer) {
|
|
295
|
-
html = (await readFile(htmlFilePath, 'utf-8')).toString();
|
|
296
|
-
html = await devServer.transformIndexHtml(getRelativePath(sourceDirectory, htmlFilePath), html);
|
|
297
|
-
}
|
|
298
|
-
else {
|
|
299
|
-
// Otherwise, read the already transformed file from the output directory.
|
|
300
|
-
html = (await readFile(resolve(clientOutputDirectory, relative(sourceDirectory, htmlFilePath)), 'utf-8')).toString();
|
|
301
|
-
}
|
|
302
|
-
const module = await makeHtmlModule({
|
|
303
|
-
project,
|
|
304
|
-
filePath: htmlFilePath,
|
|
305
|
-
html,
|
|
306
|
-
importer,
|
|
307
|
-
serverOutputDirectory,
|
|
308
|
-
clientOutputDirectory,
|
|
309
|
-
devServer,
|
|
310
|
-
});
|
|
311
|
-
info(`Built html module for ${relativeHtmlFilePath}.`);
|
|
312
|
-
return module;
|
|
313
|
-
}
|
|
314
286
|
function findRelativeFile(importer, id) {
|
|
315
|
-
const dir =
|
|
287
|
+
const dir = dirname(importer);
|
|
316
288
|
const tsPath = resolve(dir, id.replace(/.js(x)?$/, '.ts$1'));
|
|
317
289
|
if (existsSync(tsPath)) {
|
|
318
290
|
return tsPath;
|
|
@@ -322,9 +294,6 @@ function findRelativeFile(importer, id) {
|
|
|
322
294
|
return tsPath;
|
|
323
295
|
}
|
|
324
296
|
}
|
|
325
|
-
function getVirtualSourceDirectory(id) {
|
|
326
|
-
return dirname(id.split(VIRTUAL_ID_PREFIX)[1].split('?')[0]);
|
|
327
|
-
}
|
|
328
297
|
function parseModulesFromId(id, importer) {
|
|
329
298
|
const pages = id
|
|
330
299
|
.replace(RUNTIME_VIRTUAL_ENTRYPOINT_PREFIX + ':', '')
|
package/dist/vite-plugin.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"vite-plugin.js","sourceRoot":"","sources":["../src/vite-plugin.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"vite-plugin.js","sourceRoot":"","sources":["../src/vite-plugin.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@typed/vite-plugin",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.17",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -21,17 +21,18 @@
|
|
|
21
21
|
}
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@typed/compiler": "0.0.
|
|
24
|
+
"@typed/compiler": "0.0.13",
|
|
25
25
|
"fast-glob": "^3.2.12",
|
|
26
|
-
"vavite": "^1.5.
|
|
26
|
+
"vavite": "^1.5.3",
|
|
27
27
|
"vite-plugin-compression": "^0.5.1",
|
|
28
28
|
"vite-tsconfig-paths": "^4.0.3"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
|
+
"@effect/language-service": "^0.0.15",
|
|
31
32
|
"ts-morph": "^17.0.1",
|
|
32
33
|
"vite": "^4.0.4"
|
|
33
34
|
},
|
|
34
|
-
"gitHead": "
|
|
35
|
+
"gitHead": "a9a405f1d1d1cc5f328bde1910788b28df29fb8c",
|
|
35
36
|
"publishConfig": {
|
|
36
37
|
"access": "public"
|
|
37
38
|
},
|
package/src/vite-plugin.ts
CHANGED
|
@@ -5,14 +5,13 @@ import { basename, dirname, join, relative, resolve } from 'path'
|
|
|
5
5
|
import effectTransformer from '@effect/language-service/transformer'
|
|
6
6
|
import {
|
|
7
7
|
setupTsProject,
|
|
8
|
-
makeBrowserModule,
|
|
9
8
|
makeHtmlModule,
|
|
10
9
|
makeRuntimeModule,
|
|
11
10
|
readDirectory,
|
|
12
11
|
readModules,
|
|
13
12
|
} from '@typed/compiler'
|
|
14
13
|
import glob from 'fast-glob'
|
|
15
|
-
import { Project, SourceFile, ts } from 'ts-morph'
|
|
14
|
+
import { Project, SourceFile, ts, type CompilerOptions } from 'ts-morph'
|
|
16
15
|
// @ts-expect-error Unable to resolve types w/ NodeNext
|
|
17
16
|
import vavite from 'vavite'
|
|
18
17
|
import type { ConfigEnv, Plugin, PluginOption, UserConfig, ViteDevServer } from 'vite'
|
|
@@ -60,6 +59,11 @@ export interface PluginOptions {
|
|
|
60
59
|
* effectTsOptions.debug is provided it will override this value.
|
|
61
60
|
*/
|
|
62
61
|
readonly debug?: boolean
|
|
62
|
+
|
|
63
|
+
/**
|
|
64
|
+
* If true, will configure the plugin to save all the generated files to disk
|
|
65
|
+
*/
|
|
66
|
+
readonly saveGeneratedModules?: boolean
|
|
63
67
|
}
|
|
64
68
|
|
|
65
69
|
const cwd = process.cwd()
|
|
@@ -79,7 +83,8 @@ export default function makePlugin({
|
|
|
79
83
|
clientOutputDirectory,
|
|
80
84
|
serverOutputDirectory,
|
|
81
85
|
htmlFileGlobs,
|
|
82
|
-
debug,
|
|
86
|
+
debug = false,
|
|
87
|
+
saveGeneratedModules = false,
|
|
83
88
|
}: PluginOptions): PluginOption[] {
|
|
84
89
|
// Resolved options
|
|
85
90
|
const sourceDirectory = resolve(cwd, directory)
|
|
@@ -103,9 +108,9 @@ export default function makePlugin({
|
|
|
103
108
|
debug: debug ? defaultIncludeExcludeTs : {},
|
|
104
109
|
}
|
|
105
110
|
|
|
106
|
-
const virtualIds = new Set<string>()
|
|
107
111
|
const dependentsMap = new Map<string, Set<string>>()
|
|
108
|
-
const
|
|
112
|
+
const filePathToModule = new Map<string, SourceFile>()
|
|
113
|
+
|
|
109
114
|
let devServer: ViteDevServer
|
|
110
115
|
let project: Project
|
|
111
116
|
let transformers: ts.CustomTransformers
|
|
@@ -127,8 +132,12 @@ export default function makePlugin({
|
|
|
127
132
|
]
|
|
128
133
|
|
|
129
134
|
const setupProject = () => {
|
|
135
|
+
if (project) {
|
|
136
|
+
return
|
|
137
|
+
}
|
|
138
|
+
|
|
130
139
|
info(`Setting up TypeScript project...`)
|
|
131
|
-
|
|
140
|
+
project = setupTsProject(tsConfigFilePath)
|
|
132
141
|
info(`Setup TypeScript project.`)
|
|
133
142
|
|
|
134
143
|
// Setup transformer for virtual modules.
|
|
@@ -141,8 +150,15 @@ export default function makePlugin({
|
|
|
141
150
|
).before,
|
|
142
151
|
],
|
|
143
152
|
}
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
const transpilerCompilerOptions = (): CompilerOptions => {
|
|
156
|
+
setupProject()
|
|
144
157
|
|
|
145
|
-
return
|
|
158
|
+
return {
|
|
159
|
+
...project.getCompilerOptions(),
|
|
160
|
+
allowJs: true,
|
|
161
|
+
}
|
|
146
162
|
}
|
|
147
163
|
|
|
148
164
|
const handleFileChange = async (path: string, event: 'create' | 'update' | 'delete') => {
|
|
@@ -165,11 +181,10 @@ export default function makePlugin({
|
|
|
165
181
|
const dependents = dependentsMap.get(path.replace(/.ts(x)?/, '.js$1'))
|
|
166
182
|
|
|
167
183
|
for (const dependent of dependents ?? []) {
|
|
168
|
-
const
|
|
169
|
-
const mod = devServer.moduleGraph.getModuleById(id)
|
|
184
|
+
const mod = devServer.moduleGraph.getModuleById(dependent)
|
|
170
185
|
|
|
171
186
|
if (mod) {
|
|
172
|
-
info(`reloading ${
|
|
187
|
+
info(`reloading ${dependent}`)
|
|
173
188
|
|
|
174
189
|
await devServer.reloadModule(mod)
|
|
175
190
|
}
|
|
@@ -186,11 +201,81 @@ export default function makePlugin({
|
|
|
186
201
|
}
|
|
187
202
|
}
|
|
188
203
|
|
|
189
|
-
const
|
|
190
|
-
|
|
204
|
+
const buildRenderModule = async (importer: string, id: string) => {
|
|
205
|
+
const moduleDirectory = resolve(dirname(importer), parseModulesFromId(id, importer))
|
|
206
|
+
const relativeDirectory = relative(sourceDirectory, moduleDirectory)
|
|
207
|
+
const isBrowser = id.startsWith(BROWSER_VIRTUAL_ENTRYPOINT_PREFIX)
|
|
208
|
+
const moduleType = isBrowser ? 'browser' : 'runtime'
|
|
209
|
+
const filePath = `${moduleDirectory}.${moduleType}.__generated__.ts`
|
|
191
210
|
|
|
192
|
-
|
|
211
|
+
info(`Building ${moduleType} module for ${relativeDirectory}...`)
|
|
212
|
+
|
|
213
|
+
const directory = await readDirectory(moduleDirectory)
|
|
214
|
+
const moduleTree = readModules(project, directory)
|
|
215
|
+
|
|
216
|
+
// Setup the TypeScript project if it hasn't been already
|
|
217
|
+
setupProject()
|
|
218
|
+
|
|
219
|
+
const sourceFile = makeRuntimeModule(project, moduleTree, importer, filePath, isBrowser)
|
|
220
|
+
|
|
221
|
+
info(`Built ${moduleType} module for ${relativeDirectory}.`)
|
|
222
|
+
|
|
223
|
+
filePathToModule.set(filePath, sourceFile)
|
|
224
|
+
|
|
225
|
+
if (saveGeneratedModules) {
|
|
226
|
+
await sourceFile.save()
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
return filePath
|
|
230
|
+
}
|
|
193
231
|
|
|
232
|
+
const buildHtmlModule = async (importer: string, id: string) => {
|
|
233
|
+
const htmlFileName = parseModulesFromId(id, importer)
|
|
234
|
+
const htmlFilePath = resolve(dirname(importer), htmlFileName + '.html')
|
|
235
|
+
const relativeHtmlFilePath = relative(sourceDirectory, htmlFilePath)
|
|
236
|
+
let html = ''
|
|
237
|
+
|
|
238
|
+
info(`Building html module for ${relativeHtmlFilePath}...`)
|
|
239
|
+
|
|
240
|
+
// If there's a dev server, use it to transform the HTML for development
|
|
241
|
+
if (devServer) {
|
|
242
|
+
html = (await readFile(htmlFilePath, 'utf-8')).toString()
|
|
243
|
+
html = await devServer.transformIndexHtml(
|
|
244
|
+
getRelativePath(sourceDirectory, htmlFilePath),
|
|
245
|
+
html,
|
|
246
|
+
)
|
|
247
|
+
} else {
|
|
248
|
+
// Otherwise, read the already transformed file from the output directory.
|
|
249
|
+
html = (
|
|
250
|
+
await readFile(resolve(resolvedClientOutputDirectory, relativeHtmlFilePath), 'utf-8')
|
|
251
|
+
).toString()
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
const sourceFile = await makeHtmlModule({
|
|
255
|
+
project,
|
|
256
|
+
filePath: htmlFilePath,
|
|
257
|
+
html,
|
|
258
|
+
importer,
|
|
259
|
+
serverOutputDirectory: resolvedServerOutputDirectory,
|
|
260
|
+
clientOutputDirectory: resolvedClientOutputDirectory,
|
|
261
|
+
devServer,
|
|
262
|
+
})
|
|
263
|
+
|
|
264
|
+
info(`Built html module for ${relativeHtmlFilePath}.`)
|
|
265
|
+
|
|
266
|
+
const filePath = sourceFile.getFilePath()
|
|
267
|
+
|
|
268
|
+
filePathToModule.set(filePath, sourceFile)
|
|
269
|
+
|
|
270
|
+
if (saveGeneratedModules) {
|
|
271
|
+
await sourceFile.save()
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
return filePath
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
const virtualModulePlugin = {
|
|
278
|
+
name: PLUGIN_NAME,
|
|
194
279
|
config(config: UserConfig, env: ConfigEnv) {
|
|
195
280
|
// Configure Build steps when running with vavite
|
|
196
281
|
if (env.mode === 'multibuild') {
|
|
@@ -260,106 +345,46 @@ export default function makePlugin({
|
|
|
260
345
|
},
|
|
261
346
|
|
|
262
347
|
async resolveId(id: string, importer?: string) {
|
|
263
|
-
if (
|
|
264
|
-
|
|
265
|
-
VIRTUAL_ID_PREFIX + `${importer}?modules=${parseModulesFromId(id, importer)}`
|
|
266
|
-
|
|
267
|
-
virtualIds.add(virtualId)
|
|
268
|
-
|
|
269
|
-
return virtualId
|
|
348
|
+
if (!importer) {
|
|
349
|
+
return
|
|
270
350
|
}
|
|
271
351
|
|
|
272
|
-
if (
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
352
|
+
if (
|
|
353
|
+
id.startsWith(RUNTIME_VIRTUAL_ENTRYPOINT_PREFIX) ||
|
|
354
|
+
id.startsWith(BROWSER_VIRTUAL_ENTRYPOINT_PREFIX)
|
|
355
|
+
) {
|
|
356
|
+
setupProject()
|
|
277
357
|
|
|
278
|
-
return
|
|
358
|
+
return VIRTUAL_ID_PREFIX + (await buildRenderModule(importer, id))
|
|
279
359
|
}
|
|
280
360
|
|
|
281
361
|
if (id.startsWith(HTML_VIRTUAL_ENTRYPOINT_PREFIX)) {
|
|
282
|
-
|
|
283
|
-
VIRTUAL_ID_PREFIX + `${importer}?source=${parseModulesFromId(id, importer)}`
|
|
284
|
-
|
|
285
|
-
virtualIds.add(virtualId)
|
|
362
|
+
setupProject()
|
|
286
363
|
|
|
287
|
-
return
|
|
364
|
+
return VIRTUAL_ID_PREFIX + (await buildHtmlModule(importer, id))
|
|
288
365
|
}
|
|
289
366
|
|
|
367
|
+
importer = importer.replace(VIRTUAL_ID_PREFIX, '')
|
|
368
|
+
|
|
290
369
|
// Virtual modules have problems with resolving relative paths due to not
|
|
291
370
|
// having a real directory to work with thus the need to resolve them manually.
|
|
292
|
-
if (importer
|
|
371
|
+
if (filePathToModule.has(importer) && id.startsWith('.')) {
|
|
293
372
|
return findRelativeFile(importer, id)
|
|
294
373
|
}
|
|
295
374
|
},
|
|
296
375
|
|
|
297
376
|
async load(id: string) {
|
|
298
|
-
|
|
299
|
-
// Setup the TypeScript project if it hasn't been already
|
|
300
|
-
if (!project) {
|
|
301
|
-
project = setupProject()
|
|
302
|
-
}
|
|
377
|
+
id = id.replace(VIRTUAL_ID_PREFIX, '')
|
|
303
378
|
|
|
304
|
-
|
|
305
|
-
const sourceFile: SourceFile = await buildVirtualModule(
|
|
306
|
-
project,
|
|
307
|
-
id,
|
|
308
|
-
sourceDirectory,
|
|
309
|
-
resolvedServerOutputDirectory,
|
|
310
|
-
resolvedClientOutputDirectory,
|
|
311
|
-
devServer,
|
|
312
|
-
)
|
|
313
|
-
const filePath = sourceFile.getFilePath()
|
|
314
|
-
|
|
315
|
-
sourceFilePathToVirtualId.set(filePath, id)
|
|
316
|
-
|
|
317
|
-
// If we're in a development evnironment, we need to track the dependencies of
|
|
318
|
-
// our virtual module so we can reload them when they change.
|
|
319
|
-
if (devServer) {
|
|
320
|
-
const importModuleSpecifiers = await Promise.all(
|
|
321
|
-
sourceFile.getLiteralsReferencingOtherSourceFiles().map((l) => l.getLiteralText()),
|
|
322
|
-
)
|
|
323
|
-
|
|
324
|
-
for (const specifier of importModuleSpecifiers) {
|
|
325
|
-
let resolved =
|
|
326
|
-
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
|
327
|
-
(await virtualModulePlugin.resolveId!.apply(this, [specifier, filePath])) || specifier
|
|
328
|
-
|
|
329
|
-
if (resolved.startsWith('.')) {
|
|
330
|
-
resolved = resolve(dirname(filePath), resolved)
|
|
331
|
-
}
|
|
332
|
-
|
|
333
|
-
const current = dependentsMap.get(resolved) ?? new Set()
|
|
334
|
-
|
|
335
|
-
current.add(filePath)
|
|
336
|
-
dependentsMap.set(resolved, current)
|
|
337
|
-
}
|
|
338
|
-
}
|
|
379
|
+
const sourceFile = filePathToModule.get(id) ?? project?.getSourceFile(id)
|
|
339
380
|
|
|
340
|
-
|
|
381
|
+
if (sourceFile) {
|
|
382
|
+
logDiagnostics(project, sourceFile, sourceDirectory, id)
|
|
341
383
|
|
|
342
|
-
const
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
return {
|
|
348
|
-
code: output.outputText,
|
|
349
|
-
map: output.sourceMapText,
|
|
350
|
-
moduleSideEffects: false,
|
|
351
|
-
}
|
|
352
|
-
} else if (/\.tsx?$/.test(id)) {
|
|
353
|
-
if (!project) {
|
|
354
|
-
project = setupProject()
|
|
355
|
-
}
|
|
356
|
-
|
|
357
|
-
const sourceFile =
|
|
358
|
-
project.getSourceFile(id) ??
|
|
359
|
-
project.createSourceFile(id, await readFile(id).then((b) => b.toString()))
|
|
360
|
-
|
|
361
|
-
const output = ts.transpileModule(sourceFile.getFullText(), {
|
|
362
|
-
compilerOptions: project.getCompilerOptions(),
|
|
384
|
+
const text = sourceFile.getFullText()
|
|
385
|
+
const output = ts.transpileModule(text, {
|
|
386
|
+
fileName: id,
|
|
387
|
+
compilerOptions: transpilerCompilerOptions(),
|
|
363
388
|
transformers,
|
|
364
389
|
})
|
|
365
390
|
|
|
@@ -369,20 +394,12 @@ export default function makePlugin({
|
|
|
369
394
|
}
|
|
370
395
|
}
|
|
371
396
|
},
|
|
372
|
-
transform(code, id) {
|
|
373
|
-
if (/\.tsx?$/.test(id)) {
|
|
374
|
-
if (!project) {
|
|
375
|
-
project = setupProject()
|
|
376
|
-
}
|
|
377
|
-
|
|
378
|
-
const sourceFile = project.getSourceFile(id) ?? project.createSourceFile(id, code)
|
|
379
397
|
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
},
|
|
398
|
+
transform(text: string, id: string) {
|
|
399
|
+
if (/.tsx?$/.test(id) || /.m?jsx?$/.test(id)) {
|
|
400
|
+
const output = ts.transpileModule(text, {
|
|
401
|
+
fileName: id,
|
|
402
|
+
compilerOptions: transpilerCompilerOptions(),
|
|
386
403
|
transformers,
|
|
387
404
|
})
|
|
388
405
|
|
|
@@ -416,76 +433,8 @@ function logDiagnostics(
|
|
|
416
433
|
}
|
|
417
434
|
}
|
|
418
435
|
|
|
419
|
-
async function buildVirtualModule(
|
|
420
|
-
project: Project,
|
|
421
|
-
id: string,
|
|
422
|
-
sourceDirectory: string,
|
|
423
|
-
serverOutputDirectory: string,
|
|
424
|
-
clientOutputDirectory: string,
|
|
425
|
-
devServer?: ViteDevServer,
|
|
426
|
-
) {
|
|
427
|
-
// Parse our virtual ID into the original importer and whatever query was passed to it
|
|
428
|
-
const [importer, query] = id.split(VIRTUAL_ID_PREFIX)[1].split('?')
|
|
429
|
-
|
|
430
|
-
// If the query is for a runtime module, read the directory and transform it into a module.
|
|
431
|
-
if (query.includes('modules=')) {
|
|
432
|
-
const moduleDirectory = resolve(dirname(importer), query.split('modules=')[1].split('&')[0])
|
|
433
|
-
const relativeDirectory = relative(sourceDirectory, moduleDirectory)
|
|
434
|
-
const directory = await readDirectory(moduleDirectory)
|
|
435
|
-
const moduleTree = readModules(project, directory)
|
|
436
|
-
const isBrowser = query.includes('&browser')
|
|
437
|
-
|
|
438
|
-
info(`Building ${isBrowser ? 'browser' : 'runtime'} module for ${relativeDirectory}...`)
|
|
439
|
-
|
|
440
|
-
const mod = isBrowser
|
|
441
|
-
? makeBrowserModule(project, moduleTree, importer)
|
|
442
|
-
: makeRuntimeModule(project, moduleTree, importer)
|
|
443
|
-
|
|
444
|
-
info(`Built ${isBrowser ? 'browser' : 'runtime'} module for ${relativeDirectory}.`)
|
|
445
|
-
|
|
446
|
-
return mod
|
|
447
|
-
}
|
|
448
|
-
|
|
449
|
-
// If the query is for an HTML file, read the file and transform it into a module.
|
|
450
|
-
|
|
451
|
-
const htmlFile = query.split('source=')[1]
|
|
452
|
-
const htmlFilePath = resolve(dirname(importer), htmlFile + '.html')
|
|
453
|
-
const relativeHtmlFilePath = relative(sourceDirectory, htmlFilePath)
|
|
454
|
-
let html = ''
|
|
455
|
-
|
|
456
|
-
info(`Building html module for ${relativeHtmlFilePath}...`)
|
|
457
|
-
|
|
458
|
-
// If there's a dev server, use it to transform the HTML for development
|
|
459
|
-
if (devServer) {
|
|
460
|
-
html = (await readFile(htmlFilePath, 'utf-8')).toString()
|
|
461
|
-
html = await devServer.transformIndexHtml(getRelativePath(sourceDirectory, htmlFilePath), html)
|
|
462
|
-
} else {
|
|
463
|
-
// Otherwise, read the already transformed file from the output directory.
|
|
464
|
-
html = (
|
|
465
|
-
await readFile(
|
|
466
|
-
resolve(clientOutputDirectory, relative(sourceDirectory, htmlFilePath)),
|
|
467
|
-
'utf-8',
|
|
468
|
-
)
|
|
469
|
-
).toString()
|
|
470
|
-
}
|
|
471
|
-
|
|
472
|
-
const module = await makeHtmlModule({
|
|
473
|
-
project,
|
|
474
|
-
filePath: htmlFilePath,
|
|
475
|
-
html,
|
|
476
|
-
importer,
|
|
477
|
-
serverOutputDirectory,
|
|
478
|
-
clientOutputDirectory,
|
|
479
|
-
devServer,
|
|
480
|
-
})
|
|
481
|
-
|
|
482
|
-
info(`Built html module for ${relativeHtmlFilePath}.`)
|
|
483
|
-
|
|
484
|
-
return module
|
|
485
|
-
}
|
|
486
|
-
|
|
487
436
|
function findRelativeFile(importer: string, id: string) {
|
|
488
|
-
const dir =
|
|
437
|
+
const dir = dirname(importer)
|
|
489
438
|
const tsPath = resolve(dir, id.replace(/.js(x)?$/, '.ts$1'))
|
|
490
439
|
|
|
491
440
|
if (existsSync(tsPath)) {
|
|
@@ -499,10 +448,6 @@ function findRelativeFile(importer: string, id: string) {
|
|
|
499
448
|
}
|
|
500
449
|
}
|
|
501
450
|
|
|
502
|
-
function getVirtualSourceDirectory(id: string) {
|
|
503
|
-
return dirname(id.split(VIRTUAL_ID_PREFIX)[1].split('?')[0])
|
|
504
|
-
}
|
|
505
|
-
|
|
506
451
|
function parseModulesFromId(id: string, importer: string | undefined): string {
|
|
507
452
|
const pages = id
|
|
508
453
|
.replace(RUNTIME_VIRTUAL_ENTRYPOINT_PREFIX + ':', '')
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/.pnpm/tslib@2.4.1/node_modules/tslib/tslib.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/typescript.d.ts","../../node_modules/.pnpm/@effect+language-service@0.0.15/node_modules/@effect/language-service/transformer.d.ts","../../node_modules/.pnpm/@ts-morph+common@0.18.1/node_modules/@ts-morph/common/lib/typescript.d.ts","../../node_modules/.pnpm/@ts-morph+common@0.18.1/node_modules/@ts-morph/common/lib/ts-morph-common.d.ts","../../node_modules/.pnpm/ts-morph@17.0.1/node_modules/ts-morph/lib/ts-morph.d.ts","../compiler/dist/sourcefilemodule.d.ts","../compiler/dist/readdirectory.d.ts","../compiler/dist/readmodules.d.ts","../compiler/dist/makebrowsermodule.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/assert.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/assert/strict.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/globals.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/async_hooks.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/buffer.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/child_process.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/cluster.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/console.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/constants.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/crypto.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/dgram.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/dns.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/dns/promises.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/domain.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/dom-events.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/events.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/fs.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/fs/promises.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/http.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/http2.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/https.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/inspector.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/module.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/net.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/os.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/path.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/perf_hooks.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/process.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/punycode.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/querystring.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/readline.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/readline/promises.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/repl.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/stream.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/stream/promises.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/stream/consumers.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/stream/web.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/string_decoder.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/test.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/timers.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/timers/promises.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/tls.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/trace_events.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/tty.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/url.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/util.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/v8.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/vm.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/wasi.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/worker_threads.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/zlib.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/globals.global.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/index.d.ts","../../node_modules/.pnpm/esbuild@0.16.16/node_modules/esbuild/lib/main.d.ts","../../node_modules/.pnpm/rollup@3.9.1/node_modules/rollup/dist/rollup.d.ts","../../node_modules/.pnpm/source-map-js@1.0.2/node_modules/source-map-js/source-map.d.ts","../../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/comment.d.ts","../../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/at-rule.d.ts","../../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/rule.d.ts","../../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/container.d.ts","../../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/declaration.d.ts","../../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/previous-map.d.ts","../../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/input.d.ts","../../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/css-syntax-error.d.ts","../../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/warning.d.ts","../../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/document.d.ts","../../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/root.d.ts","../../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/lazy-result.d.ts","../../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/no-work-result.d.ts","../../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/processor.d.ts","../../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/result.d.ts","../../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/node.d.ts","../../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/list.d.ts","../../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/postcss.d.ts","../../node_modules/.pnpm/vite@4.0.4/node_modules/vite/dist/node/index.d.ts","../compiler/dist/makehtmlmodule.d.ts","../compiler/dist/makeruntimemodule.d.ts","../compiler/dist/cleanhtml.d.ts","../../node_modules/.pnpm/@fp-ts+core@0.0.11/node_modules/@fp-ts/core/hkt.d.ts","../../node_modules/.pnpm/@fp-ts+core@0.0.11/node_modules/@fp-ts/core/typeclass/invariant.d.ts","../../node_modules/.pnpm/@fp-ts+core@0.0.11/node_modules/@fp-ts/core/typeclass/contravariant.d.ts","../../node_modules/.pnpm/@fp-ts+core@0.0.11/node_modules/@fp-ts/core/typeclass/of.d.ts","../../node_modules/.pnpm/@fp-ts+core@0.0.11/node_modules/@fp-ts/core/typeclass/covariant.d.ts","../../node_modules/.pnpm/@fp-ts+core@0.0.11/node_modules/@fp-ts/core/typeclass/semigroup.d.ts","../../node_modules/.pnpm/@fp-ts+core@0.0.11/node_modules/@fp-ts/core/typeclass/semiapplicative.d.ts","../../node_modules/.pnpm/@fp-ts+core@0.0.11/node_modules/@fp-ts/core/typeclass/semiproduct.d.ts","../../node_modules/.pnpm/@fp-ts+core@0.0.11/node_modules/@fp-ts/core/typeclass/product.d.ts","../../node_modules/.pnpm/@fp-ts+core@0.0.11/node_modules/@fp-ts/core/typeclass/order.d.ts","../../node_modules/.pnpm/@fp-ts+core@0.0.11/node_modules/@fp-ts/core/typeclass/bounded.d.ts","../../node_modules/.pnpm/@fp-ts+core@0.0.11/node_modules/@fp-ts/core/typeclass/monoid.d.ts","../../node_modules/.pnpm/@fp-ts+core@0.0.11/node_modules/@fp-ts/core/typeclass/semicoproduct.d.ts","../../node_modules/.pnpm/@fp-ts+core@0.0.11/node_modules/@fp-ts/core/typeclass/coproduct.d.ts","../../node_modules/.pnpm/@fp-ts+core@0.0.11/node_modules/@fp-ts/core/typeclass/semialternative.d.ts","../../node_modules/.pnpm/@fp-ts+core@0.0.11/node_modules/@fp-ts/core/typeclass/alternative.d.ts","../../node_modules/.pnpm/@fp-ts+core@0.0.11/node_modules/@fp-ts/core/typeclass/applicative.d.ts","../../node_modules/.pnpm/@fp-ts+core@0.0.11/node_modules/@fp-ts/core/typeclass/flatmap.d.ts","../../node_modules/.pnpm/@fp-ts+core@0.0.11/node_modules/@fp-ts/core/typeclass/chainable.d.ts","../../node_modules/.pnpm/@fp-ts+core@0.0.11/node_modules/@fp-ts/core/typeclass/pointed.d.ts","../../node_modules/.pnpm/@fp-ts+core@0.0.11/node_modules/@fp-ts/core/typeclass/monad.d.ts","../../node_modules/.pnpm/@fp-ts+core@0.0.11/node_modules/@fp-ts/core/typeclass/foldable.d.ts","../../node_modules/.pnpm/@fp-ts+core@0.0.11/node_modules/@fp-ts/core/typeclass/traversable.d.ts","../../node_modules/.pnpm/@fp-ts+core@0.0.11/node_modules/@fp-ts/core/typeclass/bicovariant.d.ts","../../node_modules/.pnpm/@fp-ts+data@0.0.36/node_modules/@fp-ts/data/function.d.ts","../../node_modules/.pnpm/@fp-ts+data@0.0.36/node_modules/@fp-ts/data/predicate.d.ts","../../node_modules/.pnpm/@fp-ts+data@0.0.36/node_modules/@fp-ts/data/typeclass/gen.d.ts","../../node_modules/.pnpm/@fp-ts+data@0.0.36/node_modules/@fp-ts/data/either.d.ts","../../node_modules/.pnpm/@fp-ts+data@0.0.36/node_modules/@fp-ts/data/typeclass/compactable.d.ts","../../node_modules/.pnpm/@fp-ts+data@0.0.36/node_modules/@fp-ts/data/typeclass/filterable.d.ts","../../node_modules/.pnpm/@fp-ts+data@0.0.36/node_modules/@fp-ts/data/option.d.ts","../compiler/dist/scansourcefiles.d.ts","../compiler/dist/setuptsproject.d.ts","../compiler/dist/index.d.ts","../../node_modules/.pnpm/@nodelib+fs.stat@2.0.5/node_modules/@nodelib/fs.stat/out/types/index.d.ts","../../node_modules/.pnpm/@nodelib+fs.stat@2.0.5/node_modules/@nodelib/fs.stat/out/adapters/fs.d.ts","../../node_modules/.pnpm/@nodelib+fs.stat@2.0.5/node_modules/@nodelib/fs.stat/out/settings.d.ts","../../node_modules/.pnpm/@nodelib+fs.stat@2.0.5/node_modules/@nodelib/fs.stat/out/providers/async.d.ts","../../node_modules/.pnpm/@nodelib+fs.stat@2.0.5/node_modules/@nodelib/fs.stat/out/index.d.ts","../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/types/index.d.ts","../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/adapters/fs.d.ts","../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/settings.d.ts","../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/providers/async.d.ts","../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/index.d.ts","../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/types/index.d.ts","../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/settings.d.ts","../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/readers/reader.d.ts","../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/readers/async.d.ts","../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/providers/async.d.ts","../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/index.d.ts","../../node_modules/.pnpm/fast-glob@3.2.12/node_modules/fast-glob/out/types/index.d.ts","../../node_modules/.pnpm/fast-glob@3.2.12/node_modules/fast-glob/out/settings.d.ts","../../node_modules/.pnpm/fast-glob@3.2.12/node_modules/fast-glob/out/managers/tasks.d.ts","../../node_modules/.pnpm/fast-glob@3.2.12/node_modules/fast-glob/out/index.d.ts","../../node_modules/.pnpm/vite@4.0.4_@types+node@18.11.18/node_modules/vite/dist/node/index.d.ts","../../node_modules/.pnpm/vite-plugin-compression@0.5.1_vite@4.0.4/node_modules/vite-plugin-compression/dist/index.d.ts","../../node_modules/.pnpm/vite-tsconfig-paths@4.0.3_vite@4.0.4/node_modules/vite-tsconfig-paths/dist/index.d.ts","../../node_modules/.pnpm/vite-tsconfig-paths@4.0.3_vite@4.0.4/node_modules/vite-tsconfig-paths/dist/index.d.mts","./src/vite-plugin.ts","./src/index.ts","../../node_modules/.pnpm/vite@4.0.4/node_modules/vite/types/hmrpayload.d.ts","../../node_modules/.pnpm/vite@4.0.4/node_modules/vite/types/customevent.d.ts","../../node_modules/.pnpm/vite@4.0.4/node_modules/vite/types/hot.d.ts","../../node_modules/.pnpm/vite@4.0.4/node_modules/vite/types/importglob.d.ts","../../node_modules/.pnpm/vite@4.0.4/node_modules/vite/types/importmeta.d.ts","../../node_modules/.pnpm/vite@4.0.4/node_modules/vite/client.d.ts","../../node_modules/.pnpm/@types+node@18.11.17/node_modules/@types/node/util.d.ts","../../node_modules/.pnpm/esbuild@0.16.13/node_modules/esbuild/lib/main.d.ts","../../node_modules/.pnpm/postcss@8.4.20/node_modules/postcss/lib/postcss.d.ts","../../node_modules/.pnpm/esbuild@0.16.15/node_modules/esbuild/lib/main.d.ts"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","impliedFormat":1},{"version":"7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","impliedFormat":1},{"version":"8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","impliedFormat":1},{"version":"5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","impliedFormat":1},{"version":"4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","impliedFormat":1},{"version":"1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9","impliedFormat":1},{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true,"impliedFormat":1},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true,"impliedFormat":1},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true,"impliedFormat":1},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true,"impliedFormat":1},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true,"impliedFormat":1},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true,"impliedFormat":1},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true,"impliedFormat":1},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true,"impliedFormat":1},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true,"impliedFormat":1},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true,"impliedFormat":1},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true,"impliedFormat":1},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true,"impliedFormat":1},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true,"impliedFormat":1},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true,"impliedFormat":1},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true,"impliedFormat":1},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true,"impliedFormat":1},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true,"impliedFormat":1},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true,"impliedFormat":1},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true,"impliedFormat":1},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true,"impliedFormat":1},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true,"impliedFormat":1},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true,"impliedFormat":1},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true,"impliedFormat":1},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true,"impliedFormat":1},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"14a84fbe4ec531dcbaf5d2594fd95df107258e60ae6c6a076404f13c3f66f28e","impliedFormat":1},{"version":"57e52a0882af4e835473dda27e4316cc31149866970210f9f79b940e916b7838","impliedFormat":1},{"version":"55d265a6e55155a0dd901208e8191c9a32e9f7ecad5a12f8d02b0e889808105e","impliedFormat":1},{"version":"c15e0ce772ad75ddd4f69e15be798f8182e99da1430622a909b5e8a9fbcc7d80","impliedFormat":1},{"version":"69c3c4d84975c2e9811bd0a3043da40f5dd606bd3c5b72aec76cf414b369a7f7","impliedFormat":1},{"version":"0349c681e7799b99d0209f0b1e63f10403ec85447effb03f3aa3faf0c7948371","impliedFormat":1},{"version":"d8b4297f56ef0d5af2c90161e801edcf1b0943a9600d12e014138705374743eb","impliedFormat":99},{"version":"a16bc2d2b5446c1db7b3e14c2c9f176000204a241ca728352d9278be28c148c7","impliedFormat":99},{"version":"7fbd62de2fb49ef4fd204d8df5378401da78edba70b058401f1e881ed1bed453","impliedFormat":99},{"version":"ce18a46ab2c10b46da962c08d363c176c06db8d0ca7d65c082acbe51f2395289","impliedFormat":99},{"version":"7e771891adaa85b690266bc37bd6eb43bc57eecc4b54693ead36467e7369952a","impliedFormat":1},{"version":"a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a","impliedFormat":1},{"version":"ca72190df0eb9b09d4b600821c8c7b6c9747b75a1c700c4d57dc0bb72abc074c","affectsGlobalScope":true,"impliedFormat":1},{"version":"21a167fec8f933752fb8157f06d28fab6817af3ad9b0bdb1908a10762391eab9","impliedFormat":1},{"version":"bb65c6267c5d6676be61acbf6604cf0a4555ac4b505df58ac15c831fcbff4e3e","affectsGlobalScope":true,"impliedFormat":1},{"version":"374ca798f244e464346f14301dc2a8b4b111af1a83b49fffef5906c338a1f922","impliedFormat":1},{"version":"5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713","impliedFormat":1},{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true,"impliedFormat":1},{"version":"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","impliedFormat":1},{"version":"dab86d9604fe40854ef3c0a6f9e8948873dc3509213418e5e457f410fd11200f","impliedFormat":1},{"version":"bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","impliedFormat":1},{"version":"489532ff54b714f0e0939947a1c560e516d3ae93d51d639ab02e907a0e950114","impliedFormat":1},{"version":"f30bb836526d930a74593f7b0f5c1c46d10856415a8f69e5e2fc3db80371e362","impliedFormat":1},{"version":"14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","impliedFormat":1},{"version":"5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea","impliedFormat":1},{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true,"impliedFormat":1},{"version":"816ad2e607a96de5bcac7d437f843f5afd8957f1fa5eefa6bba8e4ed7ca8fd84","affectsGlobalScope":true,"impliedFormat":1},{"version":"cec36af22f514322f870e81d30675c78df82ae8bf4863f5fd4e4424c040c678d","impliedFormat":1},{"version":"d903fafe96674bc0b2ac38a5be4a8fc07b14c2548d1cdb165a80ea24c44c0c54","impliedFormat":1},{"version":"5eec82ac21f84d83586c59a16b9b8502d34505d1393393556682fe7e7fde9ef2","impliedFormat":1},{"version":"04eb6578a588d6a46f50299b55f30e3a04ef27d0c5a46c57d8fcc211cd530faa","impliedFormat":1},{"version":"8d3c583a07e0c37e876908c2d5da575019f689df8d9fa4c081d99119d53dba22","impliedFormat":1},{"version":"2c828a5405191d006115ab34e191b8474bc6c86ffdc401d1a9864b1b6e088a58","impliedFormat":1},{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true,"impliedFormat":1},{"version":"d076fede3cb042e7b13fc29442aaa03a57806bc51e2b26a67a01fbc66a7c0c12","impliedFormat":1},{"version":"7c013aa892414a7fdcfd861ae524a668eaa3ede8c7c0acafaf611948122c8d93","impliedFormat":1},{"version":"b0973c3cbcdc59b37bf477731d468696ecaf442593ec51bab497a613a580fe30","impliedFormat":1},{"version":"4989e92ba5b69b182d2caaea6295af52b7dc73a4f7a2e336a676722884e7139d","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3624aed92dab6da8484280d3cb3e2f4130ec3f4ef3f8201c95144ae9e898bb6","affectsGlobalScope":true,"impliedFormat":1},{"version":"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","impliedFormat":1},{"version":"210d54cd652ec0fec8c8916e4af59bb341065576ecda039842f9ffb2e908507c","impliedFormat":1},{"version":"36b03690b628eab08703d63f04eaa89c5df202e5f1edf3989f13ad389cd2c091","impliedFormat":1},{"version":"0effadd232a20498b11308058e334d3339cc5bf8c4c858393e38d9d4c0013dcf","impliedFormat":1},{"version":"25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","impliedFormat":1},{"version":"fd93cee2621ff42dabe57b7be402783fd1aa69ece755bcba1e0290547ae60513","impliedFormat":1},{"version":"1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","impliedFormat":1},{"version":"69ee23dd0d215b09907ad30d23f88b7790c93329d1faf31d7835552a10cf7cbf","impliedFormat":1},{"version":"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","impliedFormat":1},{"version":"23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","impliedFormat":1},{"version":"223c37f62ce09a3d99e77498acdee7b2705a4ae14552fbdb4093600cd9164f3f","impliedFormat":1},{"version":"970a90f76d4d219ad60819d61f5994514087ba94c985647a3474a5a3d12714ed","affectsGlobalScope":true,"impliedFormat":1},{"version":"e10177274a35a9d07c825615340b2fcde2f610f53f3fb40269fd196b4288dda6","impliedFormat":1},{"version":"4c8525f256873c7ba3135338c647eaf0ca7115a1a2805ae2d0056629461186ce","impliedFormat":1},{"version":"3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","impliedFormat":1},{"version":"5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2","impliedFormat":1},{"version":"f0900cd5d00fe1263ff41201fb8073dbeb984397e4af3b8002a5c207a30bdc33","affectsGlobalScope":true,"impliedFormat":1},{"version":"4c50342e1b65d3bee2ed4ab18f84842d5724ad11083bd666d8705dc7a6079d80","affectsGlobalScope":true,"impliedFormat":1},{"version":"06d7c42d256f0ce6afe1b2b6cfbc97ab391f29dadb00dd0ae8e8f23f5bc916c3","impliedFormat":1},{"version":"ec4bd1b200670fb567920db572d6701ed42a9641d09c4ff6869768c8f81b404c","impliedFormat":1},{"version":"e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa","impliedFormat":1},{"version":"da26af7362f53d122283bc69fed862b9a9fe27e01bc6a69d1d682e0e5a4df3e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e","impliedFormat":1},{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true,"impliedFormat":1},{"version":"8dbe725f8d237e70310977afcfa011629804d101ebaa0266cafda6b61ad72236","impliedFormat":1},{"version":"f05dce044af53a0b39d9540b53b0841e11c642908959bb865080288c1e24ebeb","impliedFormat":1},{"version":"24f9d2575fe8a379bc51b6be4bfe7f1d574dec0a8d2f2598fa83112262066a9a","impliedFormat":1},{"version":"858d0d831826c6eb563df02f7db71c90e26deadd0938652096bea3cc14899700","impliedFormat":1},{"version":"d1c89db652113258e4ba4bbdf5cc7a2a3a600403d4d864a2087b95186253cd5b","impliedFormat":1},{"version":"11a90d2cb2eaf7fdf931a63b58279e8161f1477a1bd1e914ae026c1bbf9afed3","impliedFormat":1},{"version":"af18e30f3ba06e9870b61dfa4a109215caabdaa337590c51b4a044a9f338ce96","impliedFormat":1},{"version":"ace603f7b60599f2dcdbd71c07137b60a747dd33be540f4a294b890f9e0b89dc","impliedFormat":1},{"version":"7658fbdd425c656fb1849b44932ae7431e8c3198d22c65ce1490deb582743b52","impliedFormat":1},{"version":"7786c75c1b46e93b33c63dccf689143a5f47ff451a6b3bd9b10e4801cdeadcc2","impliedFormat":1},{"version":"dbef2851e33a4c2fd2f3164fec70e45df647eb0e87f250de784500a3037e2c37","impliedFormat":1},{"version":"31491a01ed7466e0b3b0ef8407f2524683055eceb955b1d5ccf7096129468b39","impliedFormat":1},{"version":"f4b12f7dde4fc0e386648318481bdcfe861b566be246bebf0e8a11ebd909adf9","impliedFormat":1},{"version":"e8966f7c424780bb0b9d411ebe13eda8555ca15aa675603316c2952bc027b0e3","impliedFormat":1},{"version":"df0e5f3c4a518111d160cf3bebc9a3ac7d39c6e3bfb7a21d43c304896c3015e2","impliedFormat":1},{"version":"df4e2f161f74870708c2cc5e1036a6405b878496408fda1ee50d5b10e50d6601","impliedFormat":1},{"version":"bf791da347fb1c0ffc1e2fcd35867e64bb8355270ae26278198c521bdcf94569","impliedFormat":1},{"version":"e0e0e3c068e145fbb322120979299ff130ffdd39f0dcd0d5aeaa9f3f8a0d01d9","impliedFormat":1},{"version":"fde91356172e35b9ea68bbdf33721f7c80307a4ce65b82105eac800e9e744995","impliedFormat":1},{"version":"9bd5e5a4a1e66b35efe3c48ddac1116537ef86e041717f3a9b9f1e060c74efa6","impliedFormat":1},{"version":"d7e4a5f4ccfb749c3033fafc233073b4d1dcca0249785186c589602a81f9d86f","impliedFormat":1},{"version":"68161b6f3004fc10f8bb47a4986cef13c3b0728fb1ca3e1dc7316227d09b2c8d","impliedFormat":1},{"version":"7ed7c893a59716284bf3e58e814d8e96075575abb24ea27034ef18fb9842c9c0","impliedFormat":99},{"version":"9b0815c45500f461613b5afaf20219eca32700efaeaf38510489e7794ab44c16","impliedFormat":99},{"version":"045ccb2bc720f403264b9da1240ffe2824428f3f34c3b2f0eeedb7f028c57711","impliedFormat":99},{"version":"6df3dd86573ef3243f8fbc59af5f14cdd1788b4918929e065121f70888042ea0","impliedFormat":99},{"version":"a0e959d766ed08494960e6a426996aa05c818d661bc60b567463ead5a4b25da6","impliedFormat":1},{"version":"44835ca76f9096b1844773b2c189fc9ae6222f7722b581db51e14b2aa4afecf3","impliedFormat":1},{"version":"e53669c4c413188afb8d82490a54bd9db8d136b4e805e76bb2b435da21eb2804","impliedFormat":1},{"version":"5884b6426b90342f7d46ea69c24881130f9b97da0a9b75f52aa92cfe9695c437","impliedFormat":1},{"version":"acbe8504fd9b248c2f49b20cf3b944812ed5329a849eb66cecacd73d00c402a6","impliedFormat":1},{"version":"9143937234c3945b5de8b5868a16c37ba786c5f1df0dd149bea74904100f39ed","impliedFormat":1},{"version":"414e49c403f332d04c5efc5a1b78cba3137b0a49d37d1f93806631af5d077819","impliedFormat":1},{"version":"afce1656e33a5ec34ab7fc8cc442128c24a80bc4fadb34b97ae2cea2d599869f","impliedFormat":1},{"version":"312d0268ceb0b46746a1ff25d7a4ef98ae439b3438cb350f8b1211181b2564ca","impliedFormat":1},{"version":"47a35e3fdb93a718d6ba74d975ea0d94ff4505812634e8608dd53e1d6320db95","impliedFormat":1},{"version":"066252bf9fd913ed25dda07137547badef7be08874179aa88217b56d1a52aad0","impliedFormat":1},{"version":"d475524efda3df7e00f01982ce5532c45f480f2cc065bdef5b28984eaa422e44","impliedFormat":1},{"version":"902820a7d8472eca06407525e816c1e2565af8111b1129b6f00537fcc6c50a85","impliedFormat":1},{"version":"5ee08395d6d1cd9d5d68849c77abcffec59fffb69720a2bf3f9c0b73b2534313","impliedFormat":1},{"version":"888a9cd6f96d8bb1d9ce6ec24c528f7d64e033263ecab489b1c4a88fb85616c9","impliedFormat":1},{"version":"f3802246ed4f2ad05000fc363f3b9bca3a35c6b4c7c543d32e2f507b298b325b","impliedFormat":1},{"version":"b06495bb4256aec3f23a16f518bb6c109fc9f373b09c9157efd727f0b21756c4","impliedFormat":1},{"version":"fb074e3f3cc377ab26a1cb40c157f993c506de06a0ca3b536782e5828d7d3d13","impliedFormat":1},{"version":"a60c24a7ce9408233cbb9e6d72143196df92ddd3ae18b5c1e5c447a5de311c6f","impliedFormat":1},{"version":"5dab7f63859e2b45f5ae794ded0ce702e589fbf5cb8301da9491dc11394f7cda","impliedFormat":1},{"version":"6b27b834b2156fe0a78443a7b703b5fffec2c9c06dba61672dafa777dbe764b9","impliedFormat":1},{"version":"4a19b1680db3a88a84fa8bf989392a1e4a8685e7a559fc756b0a68649caaa880","impliedFormat":1},{"version":"676a0fde6e7d6e4cacf10aaea1d613f7e8dadab39149e536816759d5226613e6","impliedFormat":1},{"version":"8cdbf3b0261aa6a0da2c063b39cab5475d5d0fc69627dc91d746dad6efc2841e","impliedFormat":1},{"version":"c7ad9e8572e0b45b6a6a0613ff579179136fda4212240f42eb27073ab0cd3882","impliedFormat":1},{"version":"3bdf64bd022260f42c369f4843e03cc22dd1e330553cf9fcbef616dda36477c1","impliedFormat":1},{"version":"bf307b3a85e19b07ecbb0d4de375821a3e09ebe4ce96184ce8708b68a699ecce","impliedFormat":1},{"version":"dc370221cd956fe9d9968e8dbe7fe4bbe9415dc4f7f8354e1c812b377cacd8cc","impliedFormat":1},{"version":"71c30f8e8a6f74397a22161820d9d0cd80c71a64f77392fa198457bac1d1f9b0","impliedFormat":1},{"version":"4ac9eb5274b5e2e1e27139f430d8ca5083c8d0e3b1a97ae13eddd2c70be34cd4","impliedFormat":1},{"version":"2f238fc390bfbc3cc50e16322779faace9f059f490825529a4420c67c3b6c90f","impliedFormat":1},{"version":"83eab7426b2c6c785e243a0ece01eda2e449e9ef2df5b32434462963211dfffd","impliedFormat":99},{"version":"81fc9d6b00f26131a056a785b9bf096ffb6e8e00c53c12b69b35342d867e5a42","impliedFormat":99},{"version":"0ea1efe95a0ecffdbc387c7684807d815d07a64044943da0d8e13a312627304a","impliedFormat":99},{"version":"46324183533e34fad2461b51174132e8e0e4b3ac1ceb5032e4952992739d1eab","impliedFormat":1},{"version":"d3fa0530dfb1df408f0abd76486de39def69ca47683d4a3529b2d22fce27c693","impliedFormat":1},{"version":"d9be977c415df16e4defe4995caeca96e637eeef9d216d0d90cdba6fc617e97e","impliedFormat":1},{"version":"98e0c2b48d855a844099123e8ec20fe383ecd1c5877f3895b048656befe268d0","impliedFormat":1},{"version":"ff53802a97b7d11ab3c4395aa052baa14cd12d2b1ed236b520a833fdd2a15003","impliedFormat":1},{"version":"fce9262f840a74118112caf685b725e1cc86cd2b0927311511113d90d87cc61e","impliedFormat":1},{"version":"d7a7cac49af2a3bfc208fe68831fbfa569864f74a7f31cc3a607f641e6c583fd","impliedFormat":1},{"version":"9a80e3322d08274f0e41b77923c91fe67b2c8a5134a5278c2cb60a330441554e","impliedFormat":1},{"version":"2460af41191009298d931c592fb6d4151beea320f1f25b73605e2211e53e4e88","impliedFormat":1},{"version":"2f87ea988d84d1c617afdeba9d151435473ab24cd5fc456510c8db26d8bd1581","impliedFormat":1},{"version":"b7336c1c536e3deaedbda956739c6250ac2d0dd171730c42cb57b10368f38a14","impliedFormat":1},{"version":"6fb67d664aaab2f1d1ad4613b58548aecb4b4703b9e4c5dba6b865b31bd14722","impliedFormat":1},{"version":"4414644199b1a047b4234965e07d189781a92b578707c79c3933918d67cd9d85","impliedFormat":1},{"version":"04a4b38c6a1682059eac00e7d0948d99c46642b57003d61d0fe9ccc9df442887","impliedFormat":1},{"version":"f12ea658b060da1752c65ae4f1e4c248587f6cd4cb4acabbf79a110b6b02ff75","impliedFormat":1},{"version":"011b2857871a878d5eae463bedc4b3dd14755dc3a67d5d10f8fbb7823d119294","impliedFormat":1},{"version":"4498108732bcb5b7000ff9cdc011058b4155e985271ac3f926468acfed0c79dd","impliedFormat":1},{"version":"36d7b72ed8f35f9e21cc223c06697eca0d4699178fc59cfd3a310e2983fd0fd6","impliedFormat":1},{"version":"5a5cbc7aa7c4f74f49073d747a2a2518d1ec22694c88bc46092b0f25ccb8ebb7","impliedFormat":1},{"version":"51bfe35171efe121cefb2501a6cd674c367d541c4c8b0ae639c126adcc84f37d","impliedFormat":1},{"version":"7ed7c893a59716284bf3e58e814d8e96075575abb24ea27034ef18fb9842c9c0","impliedFormat":99},{"version":"a3f2bfcdcadac846411650d12cef112ca1e070c2a71413a185a5532aa4c1275d","impliedFormat":1},{"version":"c675fd2a0285c8bb2ecbc063f39f605fe3ac6c066c583f1f503d39deddea6b53","impliedFormat":1},{"version":"b943e4cfae007bf0e8b5aa9cbb979865505e89586fd1e45bb7aabf0f855ed1d5","impliedFormat":99},{"version":"03a10b9b7856f17ac1a7a8f4d72efdf59ce42b3e53cf932451e3e58a294bcbef","signature":"41c7c8f97f2d5e238a45fa860d5c7b108a72832e2ccd96f9688f9ddebea664cf","impliedFormat":99},{"version":"87ca7658ca4850cbd6b7d92337dcac6214481ba9b60e127a5a4f112ae2af2d4e","signature":"115c3b377252c99b893b392c65246730ab1cff5a75e27f15c060dfb23db8ffe8","impliedFormat":99},{"version":"bcb6ea18f23dae2c48459d7b86d3adccd6898f824fcbf9da08b935f559896580","impliedFormat":1},{"version":"0aa7220845f5f3902fe043f646f9d9218bd7dd6c4046e8471580866ea6b03aa2","impliedFormat":1},{"version":"4d5fb5d6b35f731b2ae4d9d7c592d48e91d6de531dd130628edf4eba16add893","impliedFormat":1},{"version":"739c2c46edc112421fc023c24b4898b1f413f792bb6a02b40ba182c648e56c2f","impliedFormat":1},{"version":"df93bb67d5ae7be3d599323de42e12cb8da59f0b490c3186ae91d493632b5e36","affectsGlobalScope":true,"impliedFormat":1},{"version":"318816142496b1ab2122472d06e7679787b0d0c3d189ad671213bdc1f2531f94","affectsGlobalScope":true,"impliedFormat":99}],"options":{"composite":true,"declaration":true,"declarationMap":true,"downlevelIteration":true,"esModuleInterop":true,"importHelpers":true,"importsNotUsedAsValues":2,"module":99,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./dist","preserveValueImports":true,"rootDir":"./src","skipLibCheck":true,"sourceMap":true,"strict":true,"strictFunctionTypes":true,"strictNullChecks":true,"strictPropertyInitialization":true,"target":7},"fileIdsList":[[44,99],[99],[99,132,145,146],[99,132,138,140,143],[99,132,136],[99,132,141],[99,132,136,149],[99,132,133],[99,132,143,144],[99,132],[99,132,143,145,152],[99,132,149,151],[99,137,142],[99,132,133,134,137,139,140,143],[99,132,135,136],[99,132,135,139],[99,132,136,144],[99,132,136,137,139],[99,132,133,137],[99,132,133,139,140,141],[99,132,133,136,138],[99,132,136,148],[99,132,133,135,136,137,138,139,140,143,144,146,148,149,150,151,152,153,154,155,156,157,158,162],[99,132,137,143],[99,132,133,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,156,157,158,159,160,161],[99,132,133,134,135,137,139,140,143],[99,132,136,159,162],[99,132,152],[99,170,171],[99,171,172,173,174],[99,106,171,173],[99,170,172],[70,99,106],[70,99,106,166],[99,166,167,168,169],[99,166,168],[99,167],[87,99,106,175,176,177,180],[99,176,177,179],[69,99,106,175,176,177,178],[99,177],[99,175,176],[99,106,175],[46,99],[53,99],[56,99],[57,62,90,99],[58,69,70,77,87,98,99],[58,59,69,77,99],[60,99],[61,62,70,78,99],[62,87,95,99],[63,65,69,77,99],[64,99],[65,66,99],[69,99],[67,69,99],[69,70,71,87,98,99],[69,70,71,84,87,90,99],[99,103],[65,72,77,87,98,99],[69,70,72,73,77,87,95,98,99],[72,74,87,95,98,99],[53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105],[69,75,99],[76,98,99],[65,69,77,87,99],[78,99],[79,99],[56,80,99],[81,97,99,103],[82,99],[83,99],[69,84,85,99],[84,86,99,101],[57,69,87,88,89,90,99],[57,87,89,99],[87,88,99],[90,99],[91,99],[69,93,94,99],[93,94,99],[62,77,87,95,99],[96,99],[77,97,99],[57,72,83,98,99],[62,99],[87,99,100],[99,101],[99,102],[57,62,69,71,80,87,98,99,101,103],[87,99,104],[99,106,182,183,184],[99,182,183],[99,182],[99,106,181],[99,113],[99,113,125],[99,110,111,112,114,125],[99,116],[99,113,120,124,127],[99,115,127],[99,118,120,123,124,127],[99,118,120,121,123,124,127],[99,110,111,112,113,114,116,117,118,119,120,124,127],[99,109,110,111,112,113,114,116,117,118,119,120,121,123,124,125,126],[99,109,127],[99,120,121,122,124,127],[99,123,127],[99,113,119,124,127],[99,117,125],[99,109],[47,99],[99,104,128],[99,128,188],[99,128],[99,196],[69,70,72,74,77,87,95,98,99,104,106,107,108,127],[99,192],[99,193],[99,194,195],[49,50,51,52,99,129,130,131,163,164],[48,51,99],[48,99,128],[48,49,50,99],[48,49,99,162],[48,99],[43,99,190],[43,45,48,70,71,79,99,128,165,185,187,189],[198],[132,145,146,198],[132,138,140,143,198],[132,136,198],[132,141,198],[132,136,149,198],[132,133,198],[132,143,144,198],[132,198],[132,143,145,152,198],[132,149,151,198],[137,142,198],[132,133,134,137,139,140,143,198],[132,135,136,198],[132,135,139,198],[132,136,144,198],[132,136,137,139,198],[132,133,137,198],[132,133,139,140,141,198],[132,133,136,138,198],[132,136,148,198],[46,198],[109,198],[47,198],[69,70,72,74,77,87,95,98,99,104,106,108,199,200],[69,70,72,74,77,87,95,98,99,104,106,108,127,201],[48,198],[190],[128]],"referencedMap":[[45,1],[132,2],[147,3],[148,4],[155,5],[142,6],[150,7],[134,8],[145,9],[136,8],[149,10],[153,11],[133,10],[152,12],[143,13],[135,10],[141,14],[151,15],[140,16],[146,17],[138,18],[144,19],[137,20],[139,21],[154,22],[159,23],[156,24],[162,25],[157,26],[160,27],[161,27],[158,28],[172,29],[175,30],[174,31],[173,32],[171,33],[167,34],[170,35],[169,36],[168,37],[166,33],[181,38],[180,39],[179,40],[178,41],[177,42],[176,43],[47,44],[46,2],[53,45],[54,45],[56,46],[57,47],[58,48],[59,49],[60,50],[61,51],[62,52],[63,53],[64,54],[65,55],[66,55],[68,56],[67,57],[69,56],[70,58],[71,59],[55,60],[105,2],[72,61],[73,62],[74,63],[106,64],[75,65],[76,66],[77,67],[78,68],[79,69],[80,70],[81,71],[82,72],[83,73],[84,74],[85,74],[86,75],[87,76],[89,77],[88,78],[90,79],[91,80],[92,2],[93,81],[94,82],[95,83],[96,84],[97,85],[98,86],[99,87],[100,88],[101,89],[102,90],[103,91],[104,92],[107,2],[185,93],[184,94],[183,95],[182,96],[111,97],[110,98],[113,99],[117,100],[114,98],[119,101],[116,102],[121,103],[126,2],[122,104],[125,105],[127,106],[115,107],[123,108],[124,109],[120,110],[112,97],[118,111],[108,2],[109,112],[48,113],[43,2],[8,2],[10,2],[9,2],[2,2],[11,2],[12,2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[3,2],[4,2],[22,2],[19,2],[20,2],[21,2],[23,2],[24,2],[25,2],[5,2],[26,2],[27,2],[28,2],[29,2],[6,2],[33,2],[30,2],[31,2],[32,2],[34,2],[7,2],[35,2],[40,2],[41,2],[36,2],[37,2],[38,2],[39,2],[1,2],[42,2],[44,2],[187,114],[189,115],[188,116],[197,117],[128,118],[193,119],[192,2],[194,120],[195,2],[196,121],[186,118],[131,2],[165,122],[52,123],[129,124],[130,123],[50,2],[51,125],[163,126],[164,127],[49,127],[191,128],[190,129]],"exportedModulesMap":[[45,1],[132,130],[147,131],[148,132],[155,133],[142,134],[150,135],[134,136],[145,137],[136,136],[149,138],[153,139],[133,138],[152,140],[143,141],[135,138],[141,142],[151,143],[140,144],[146,145],[138,146],[144,147],[137,148],[139,149],[154,150],[159,23],[156,24],[162,25],[157,26],[160,27],[161,27],[158,28],[172,29],[175,30],[174,31],[173,32],[171,33],[167,34],[170,35],[169,36],[168,37],[166,33],[181,38],[180,39],[179,40],[178,41],[177,42],[176,43],[47,151],[46,130],[53,45],[54,45],[56,46],[57,47],[58,48],[59,49],[60,50],[61,51],[62,52],[63,53],[64,54],[65,55],[66,55],[68,56],[67,57],[69,56],[70,58],[71,59],[55,60],[105,2],[72,61],[73,62],[74,63],[106,64],[75,65],[76,66],[77,67],[78,68],[79,69],[80,70],[81,71],[82,72],[83,73],[84,74],[85,74],[86,75],[87,76],[89,77],[88,78],[90,79],[91,80],[92,2],[93,81],[94,82],[95,83],[96,84],[97,85],[98,86],[99,87],[100,88],[101,89],[102,90],[103,91],[104,92],[107,2],[185,93],[184,94],[183,95],[182,96],[111,97],[110,98],[113,99],[117,100],[114,98],[119,101],[116,102],[121,103],[126,2],[122,104],[125,105],[127,106],[115,107],[123,108],[124,109],[120,110],[112,97],[118,111],[108,2],[109,152],[48,153],[1,2],[42,130],[44,2],[187,114],[189,115],[188,116],[197,117],[128,154],[193,119],[192,2],[194,120],[195,2],[196,121],[186,155],[131,2],[165,122],[52,123],[129,124],[130,123],[50,2],[51,125],[163,126],[164,156],[49,127],[191,157],[190,158]],"semanticDiagnosticsPerFile":[45,132,147,148,155,142,150,134,145,136,149,153,133,152,143,135,141,151,140,146,138,144,137,139,154,159,156,162,157,160,161,158,172,175,174,173,171,167,170,169,168,166,181,180,179,178,177,176,47,46,53,54,56,57,58,59,60,61,62,63,64,65,66,68,67,69,70,71,55,105,72,73,74,106,75,76,77,78,79,80,81,82,83,84,85,86,87,89,88,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,107,185,184,183,182,111,110,113,117,114,119,116,121,126,122,125,127,115,123,124,120,112,118,108,109,48,43,8,10,9,2,11,12,13,14,15,16,17,18,3,4,22,19,20,21,23,24,25,5,26,27,28,29,6,33,30,31,32,34,7,35,40,41,36,37,38,39,1,42,44,187,189,188,197,128,193,192,194,195,196,186,131,165,52,129,130,50,51,163,164,49,191,190],"latestChangedDtsFile":"./dist/vite-plugin.d.ts"},"version":"4.9.4"}
|
|
1
|
+
{"program":{"fileNames":["../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/.pnpm/tslib@2.4.1/node_modules/tslib/tslib.d.ts","../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/typescript.d.ts","../../node_modules/.pnpm/@effect+language-service@0.0.15/node_modules/@effect/language-service/transformer.d.ts","../../node_modules/.pnpm/@ts-morph+common@0.18.1/node_modules/@ts-morph/common/lib/typescript.d.ts","../../node_modules/.pnpm/@ts-morph+common@0.18.1/node_modules/@ts-morph/common/lib/ts-morph-common.d.ts","../../node_modules/.pnpm/ts-morph@17.0.1/node_modules/ts-morph/lib/ts-morph.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/assert.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/assert/strict.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/globals.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/async_hooks.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/buffer.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/child_process.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/cluster.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/console.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/constants.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/crypto.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/dgram.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/dns.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/dns/promises.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/domain.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/dom-events.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/events.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/fs.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/fs/promises.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/http.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/http2.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/https.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/inspector.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/module.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/net.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/os.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/path.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/perf_hooks.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/process.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/punycode.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/querystring.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/readline.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/readline/promises.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/repl.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/stream.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/stream/promises.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/stream/consumers.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/stream/web.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/string_decoder.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/test.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/timers.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/timers/promises.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/tls.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/trace_events.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/tty.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/url.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/util.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/v8.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/vm.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/wasi.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/worker_threads.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/zlib.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/globals.global.d.ts","../../node_modules/.pnpm/@types+node@18.11.18/node_modules/@types/node/index.d.ts","../../node_modules/.pnpm/esbuild@0.16.17/node_modules/esbuild/lib/main.d.ts","../../node_modules/.pnpm/rollup@3.10.0/node_modules/rollup/dist/rollup.d.ts","../../node_modules/.pnpm/source-map-js@1.0.2/node_modules/source-map-js/source-map.d.ts","../../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/comment.d.ts","../../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/at-rule.d.ts","../../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/rule.d.ts","../../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/container.d.ts","../../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/declaration.d.ts","../../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/previous-map.d.ts","../../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/input.d.ts","../../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/css-syntax-error.d.ts","../../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/warning.d.ts","../../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/document.d.ts","../../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/root.d.ts","../../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/lazy-result.d.ts","../../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/no-work-result.d.ts","../../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/processor.d.ts","../../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/result.d.ts","../../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/node.d.ts","../../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/list.d.ts","../../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/postcss.d.ts","../../node_modules/.pnpm/vite@4.0.4/node_modules/vite/dist/node/index.d.ts","../compiler/dist/makehtmlmodule.d.ts","../compiler/dist/sourcefilemodule.d.ts","../compiler/dist/readdirectory.d.ts","../compiler/dist/readmodules.d.ts","../compiler/dist/makeruntimemodule.d.ts","../compiler/dist/cleanhtml.d.ts","../../node_modules/.pnpm/@fp-ts+core@0.0.11/node_modules/@fp-ts/core/hkt.d.ts","../../node_modules/.pnpm/@fp-ts+core@0.0.11/node_modules/@fp-ts/core/typeclass/invariant.d.ts","../../node_modules/.pnpm/@fp-ts+core@0.0.11/node_modules/@fp-ts/core/typeclass/contravariant.d.ts","../../node_modules/.pnpm/@fp-ts+core@0.0.11/node_modules/@fp-ts/core/typeclass/of.d.ts","../../node_modules/.pnpm/@fp-ts+core@0.0.11/node_modules/@fp-ts/core/typeclass/covariant.d.ts","../../node_modules/.pnpm/@fp-ts+core@0.0.11/node_modules/@fp-ts/core/typeclass/semigroup.d.ts","../../node_modules/.pnpm/@fp-ts+core@0.0.11/node_modules/@fp-ts/core/typeclass/semiapplicative.d.ts","../../node_modules/.pnpm/@fp-ts+core@0.0.11/node_modules/@fp-ts/core/typeclass/semiproduct.d.ts","../../node_modules/.pnpm/@fp-ts+core@0.0.11/node_modules/@fp-ts/core/typeclass/product.d.ts","../../node_modules/.pnpm/@fp-ts+core@0.0.11/node_modules/@fp-ts/core/typeclass/order.d.ts","../../node_modules/.pnpm/@fp-ts+core@0.0.11/node_modules/@fp-ts/core/typeclass/bounded.d.ts","../../node_modules/.pnpm/@fp-ts+core@0.0.11/node_modules/@fp-ts/core/typeclass/monoid.d.ts","../../node_modules/.pnpm/@fp-ts+core@0.0.11/node_modules/@fp-ts/core/typeclass/semicoproduct.d.ts","../../node_modules/.pnpm/@fp-ts+core@0.0.11/node_modules/@fp-ts/core/typeclass/coproduct.d.ts","../../node_modules/.pnpm/@fp-ts+core@0.0.11/node_modules/@fp-ts/core/typeclass/semialternative.d.ts","../../node_modules/.pnpm/@fp-ts+core@0.0.11/node_modules/@fp-ts/core/typeclass/alternative.d.ts","../../node_modules/.pnpm/@fp-ts+core@0.0.11/node_modules/@fp-ts/core/typeclass/applicative.d.ts","../../node_modules/.pnpm/@fp-ts+core@0.0.11/node_modules/@fp-ts/core/typeclass/flatmap.d.ts","../../node_modules/.pnpm/@fp-ts+core@0.0.11/node_modules/@fp-ts/core/typeclass/chainable.d.ts","../../node_modules/.pnpm/@fp-ts+core@0.0.11/node_modules/@fp-ts/core/typeclass/pointed.d.ts","../../node_modules/.pnpm/@fp-ts+core@0.0.11/node_modules/@fp-ts/core/typeclass/monad.d.ts","../../node_modules/.pnpm/@fp-ts+core@0.0.11/node_modules/@fp-ts/core/typeclass/foldable.d.ts","../../node_modules/.pnpm/@fp-ts+core@0.0.11/node_modules/@fp-ts/core/typeclass/traversable.d.ts","../../node_modules/.pnpm/@fp-ts+core@0.0.11/node_modules/@fp-ts/core/typeclass/bicovariant.d.ts","../../node_modules/.pnpm/@fp-ts+data@0.0.39/node_modules/@fp-ts/data/function.d.ts","../../node_modules/.pnpm/@fp-ts+data@0.0.39/node_modules/@fp-ts/data/predicate.d.ts","../../node_modules/.pnpm/@fp-ts+data@0.0.39/node_modules/@fp-ts/data/typeclass/gen.d.ts","../../node_modules/.pnpm/@fp-ts+data@0.0.39/node_modules/@fp-ts/data/either.d.ts","../../node_modules/.pnpm/@fp-ts+data@0.0.39/node_modules/@fp-ts/data/typeclass/compactable.d.ts","../../node_modules/.pnpm/@fp-ts+data@0.0.39/node_modules/@fp-ts/data/typeclass/filterable.d.ts","../../node_modules/.pnpm/@fp-ts+data@0.0.39/node_modules/@fp-ts/data/option.d.ts","../compiler/dist/scansourcefiles.d.ts","../compiler/dist/setuptsproject.d.ts","../compiler/dist/index.d.ts","../../node_modules/.pnpm/@nodelib+fs.stat@2.0.5/node_modules/@nodelib/fs.stat/out/types/index.d.ts","../../node_modules/.pnpm/@nodelib+fs.stat@2.0.5/node_modules/@nodelib/fs.stat/out/adapters/fs.d.ts","../../node_modules/.pnpm/@nodelib+fs.stat@2.0.5/node_modules/@nodelib/fs.stat/out/settings.d.ts","../../node_modules/.pnpm/@nodelib+fs.stat@2.0.5/node_modules/@nodelib/fs.stat/out/providers/async.d.ts","../../node_modules/.pnpm/@nodelib+fs.stat@2.0.5/node_modules/@nodelib/fs.stat/out/index.d.ts","../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/types/index.d.ts","../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/adapters/fs.d.ts","../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/settings.d.ts","../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/providers/async.d.ts","../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/index.d.ts","../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/types/index.d.ts","../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/settings.d.ts","../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/readers/reader.d.ts","../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/readers/async.d.ts","../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/providers/async.d.ts","../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/index.d.ts","../../node_modules/.pnpm/fast-glob@3.2.12/node_modules/fast-glob/out/types/index.d.ts","../../node_modules/.pnpm/fast-glob@3.2.12/node_modules/fast-glob/out/settings.d.ts","../../node_modules/.pnpm/fast-glob@3.2.12/node_modules/fast-glob/out/managers/tasks.d.ts","../../node_modules/.pnpm/fast-glob@3.2.12/node_modules/fast-glob/out/index.d.ts","../../node_modules/.pnpm/vite@4.0.4_@types+node@18.11.18/node_modules/vite/dist/node/index.d.ts","../../node_modules/.pnpm/vite-plugin-compression@0.5.1_vite@4.0.4/node_modules/vite-plugin-compression/dist/index.d.ts","../../node_modules/.pnpm/vite-tsconfig-paths@4.0.3_vite@4.0.4/node_modules/vite-tsconfig-paths/dist/index.d.ts","../../node_modules/.pnpm/vite-tsconfig-paths@4.0.3_vite@4.0.4/node_modules/vite-tsconfig-paths/dist/index.d.mts","./src/vite-plugin.ts","./src/index.ts","../../node_modules/.pnpm/vite@4.0.4/node_modules/vite/types/hmrpayload.d.ts","../../node_modules/.pnpm/vite@4.0.4/node_modules/vite/types/customevent.d.ts","../../node_modules/.pnpm/vite@4.0.4/node_modules/vite/types/hot.d.ts","../../node_modules/.pnpm/vite@4.0.4/node_modules/vite/types/importglob.d.ts","../../node_modules/.pnpm/vite@4.0.4/node_modules/vite/types/importmeta.d.ts","../../node_modules/.pnpm/vite@4.0.4/node_modules/vite/client.d.ts","../../node_modules/.pnpm/esbuild@0.16.16/node_modules/esbuild/lib/main.d.ts","../../node_modules/.pnpm/rollup@3.9.1/node_modules/rollup/dist/rollup.d.ts"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","impliedFormat":1},{"version":"7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","impliedFormat":1},{"version":"8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","impliedFormat":1},{"version":"5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","impliedFormat":1},{"version":"4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","impliedFormat":1},{"version":"1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9","impliedFormat":1},{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true,"impliedFormat":1},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true,"impliedFormat":1},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true,"impliedFormat":1},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true,"impliedFormat":1},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true,"impliedFormat":1},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true,"impliedFormat":1},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true,"impliedFormat":1},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true,"impliedFormat":1},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true,"impliedFormat":1},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true,"impliedFormat":1},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true,"impliedFormat":1},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true,"impliedFormat":1},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true,"impliedFormat":1},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true,"impliedFormat":1},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true,"impliedFormat":1},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true,"impliedFormat":1},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true,"impliedFormat":1},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true,"impliedFormat":1},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true,"impliedFormat":1},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true,"impliedFormat":1},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true,"impliedFormat":1},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true,"impliedFormat":1},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true,"impliedFormat":1},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true,"impliedFormat":1},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"14a84fbe4ec531dcbaf5d2594fd95df107258e60ae6c6a076404f13c3f66f28e","impliedFormat":1},{"version":"57e52a0882af4e835473dda27e4316cc31149866970210f9f79b940e916b7838","impliedFormat":1},{"version":"55d265a6e55155a0dd901208e8191c9a32e9f7ecad5a12f8d02b0e889808105e","impliedFormat":1},{"version":"c15e0ce772ad75ddd4f69e15be798f8182e99da1430622a909b5e8a9fbcc7d80","impliedFormat":1},{"version":"69c3c4d84975c2e9811bd0a3043da40f5dd606bd3c5b72aec76cf414b369a7f7","impliedFormat":1},{"version":"0349c681e7799b99d0209f0b1e63f10403ec85447effb03f3aa3faf0c7948371","impliedFormat":1},{"version":"7e771891adaa85b690266bc37bd6eb43bc57eecc4b54693ead36467e7369952a","impliedFormat":1},{"version":"a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a","impliedFormat":1},{"version":"ca72190df0eb9b09d4b600821c8c7b6c9747b75a1c700c4d57dc0bb72abc074c","affectsGlobalScope":true,"impliedFormat":1},{"version":"21a167fec8f933752fb8157f06d28fab6817af3ad9b0bdb1908a10762391eab9","impliedFormat":1},{"version":"bb65c6267c5d6676be61acbf6604cf0a4555ac4b505df58ac15c831fcbff4e3e","affectsGlobalScope":true,"impliedFormat":1},{"version":"374ca798f244e464346f14301dc2a8b4b111af1a83b49fffef5906c338a1f922","impliedFormat":1},{"version":"5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713","impliedFormat":1},{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true,"impliedFormat":1},{"version":"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","impliedFormat":1},{"version":"dab86d9604fe40854ef3c0a6f9e8948873dc3509213418e5e457f410fd11200f","impliedFormat":1},{"version":"bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","impliedFormat":1},{"version":"489532ff54b714f0e0939947a1c560e516d3ae93d51d639ab02e907a0e950114","impliedFormat":1},{"version":"f30bb836526d930a74593f7b0f5c1c46d10856415a8f69e5e2fc3db80371e362","impliedFormat":1},{"version":"14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","impliedFormat":1},{"version":"5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea","impliedFormat":1},{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true,"impliedFormat":1},{"version":"816ad2e607a96de5bcac7d437f843f5afd8957f1fa5eefa6bba8e4ed7ca8fd84","affectsGlobalScope":true,"impliedFormat":1},{"version":"cec36af22f514322f870e81d30675c78df82ae8bf4863f5fd4e4424c040c678d","impliedFormat":1},{"version":"d903fafe96674bc0b2ac38a5be4a8fc07b14c2548d1cdb165a80ea24c44c0c54","impliedFormat":1},{"version":"5eec82ac21f84d83586c59a16b9b8502d34505d1393393556682fe7e7fde9ef2","impliedFormat":1},{"version":"04eb6578a588d6a46f50299b55f30e3a04ef27d0c5a46c57d8fcc211cd530faa","impliedFormat":1},{"version":"8d3c583a07e0c37e876908c2d5da575019f689df8d9fa4c081d99119d53dba22","impliedFormat":1},{"version":"2c828a5405191d006115ab34e191b8474bc6c86ffdc401d1a9864b1b6e088a58","impliedFormat":1},{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true,"impliedFormat":1},{"version":"d076fede3cb042e7b13fc29442aaa03a57806bc51e2b26a67a01fbc66a7c0c12","impliedFormat":1},{"version":"7c013aa892414a7fdcfd861ae524a668eaa3ede8c7c0acafaf611948122c8d93","impliedFormat":1},{"version":"b0973c3cbcdc59b37bf477731d468696ecaf442593ec51bab497a613a580fe30","impliedFormat":1},{"version":"4989e92ba5b69b182d2caaea6295af52b7dc73a4f7a2e336a676722884e7139d","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3624aed92dab6da8484280d3cb3e2f4130ec3f4ef3f8201c95144ae9e898bb6","affectsGlobalScope":true,"impliedFormat":1},{"version":"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","impliedFormat":1},{"version":"210d54cd652ec0fec8c8916e4af59bb341065576ecda039842f9ffb2e908507c","impliedFormat":1},{"version":"36b03690b628eab08703d63f04eaa89c5df202e5f1edf3989f13ad389cd2c091","impliedFormat":1},{"version":"0effadd232a20498b11308058e334d3339cc5bf8c4c858393e38d9d4c0013dcf","impliedFormat":1},{"version":"25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","impliedFormat":1},{"version":"fd93cee2621ff42dabe57b7be402783fd1aa69ece755bcba1e0290547ae60513","impliedFormat":1},{"version":"1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","impliedFormat":1},{"version":"69ee23dd0d215b09907ad30d23f88b7790c93329d1faf31d7835552a10cf7cbf","impliedFormat":1},{"version":"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","impliedFormat":1},{"version":"23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","impliedFormat":1},{"version":"223c37f62ce09a3d99e77498acdee7b2705a4ae14552fbdb4093600cd9164f3f","impliedFormat":1},{"version":"970a90f76d4d219ad60819d61f5994514087ba94c985647a3474a5a3d12714ed","affectsGlobalScope":true,"impliedFormat":1},{"version":"e10177274a35a9d07c825615340b2fcde2f610f53f3fb40269fd196b4288dda6","impliedFormat":1},{"version":"4c8525f256873c7ba3135338c647eaf0ca7115a1a2805ae2d0056629461186ce","impliedFormat":1},{"version":"3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","impliedFormat":1},{"version":"5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2","impliedFormat":1},{"version":"f0900cd5d00fe1263ff41201fb8073dbeb984397e4af3b8002a5c207a30bdc33","affectsGlobalScope":true,"impliedFormat":1},{"version":"4c50342e1b65d3bee2ed4ab18f84842d5724ad11083bd666d8705dc7a6079d80","affectsGlobalScope":true,"impliedFormat":1},{"version":"06d7c42d256f0ce6afe1b2b6cfbc97ab391f29dadb00dd0ae8e8f23f5bc916c3","impliedFormat":1},{"version":"ec4bd1b200670fb567920db572d6701ed42a9641d09c4ff6869768c8f81b404c","impliedFormat":1},{"version":"e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa","impliedFormat":1},{"version":"da26af7362f53d122283bc69fed862b9a9fe27e01bc6a69d1d682e0e5a4df3e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e","impliedFormat":1},{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true,"impliedFormat":1},{"version":"8dbe725f8d237e70310977afcfa011629804d101ebaa0266cafda6b61ad72236","impliedFormat":1},{"version":"f05dce044af53a0b39d9540b53b0841e11c642908959bb865080288c1e24ebeb","impliedFormat":1},{"version":"59413c7d2d638dbd75b76c3715e24bdc10f1140c924e5a4917a9921959c41016","impliedFormat":1},{"version":"858d0d831826c6eb563df02f7db71c90e26deadd0938652096bea3cc14899700","impliedFormat":1},{"version":"d1c89db652113258e4ba4bbdf5cc7a2a3a600403d4d864a2087b95186253cd5b","impliedFormat":1},{"version":"11a90d2cb2eaf7fdf931a63b58279e8161f1477a1bd1e914ae026c1bbf9afed3","impliedFormat":1},{"version":"af18e30f3ba06e9870b61dfa4a109215caabdaa337590c51b4a044a9f338ce96","impliedFormat":1},{"version":"ace603f7b60599f2dcdbd71c07137b60a747dd33be540f4a294b890f9e0b89dc","impliedFormat":1},{"version":"7658fbdd425c656fb1849b44932ae7431e8c3198d22c65ce1490deb582743b52","impliedFormat":1},{"version":"7786c75c1b46e93b33c63dccf689143a5f47ff451a6b3bd9b10e4801cdeadcc2","impliedFormat":1},{"version":"dbef2851e33a4c2fd2f3164fec70e45df647eb0e87f250de784500a3037e2c37","impliedFormat":1},{"version":"31491a01ed7466e0b3b0ef8407f2524683055eceb955b1d5ccf7096129468b39","impliedFormat":1},{"version":"f4b12f7dde4fc0e386648318481bdcfe861b566be246bebf0e8a11ebd909adf9","impliedFormat":1},{"version":"e8966f7c424780bb0b9d411ebe13eda8555ca15aa675603316c2952bc027b0e3","impliedFormat":1},{"version":"df0e5f3c4a518111d160cf3bebc9a3ac7d39c6e3bfb7a21d43c304896c3015e2","impliedFormat":1},{"version":"df4e2f161f74870708c2cc5e1036a6405b878496408fda1ee50d5b10e50d6601","impliedFormat":1},{"version":"bf791da347fb1c0ffc1e2fcd35867e64bb8355270ae26278198c521bdcf94569","impliedFormat":1},{"version":"e0e0e3c068e145fbb322120979299ff130ffdd39f0dcd0d5aeaa9f3f8a0d01d9","impliedFormat":1},{"version":"fde91356172e35b9ea68bbdf33721f7c80307a4ce65b82105eac800e9e744995","impliedFormat":1},{"version":"9bd5e5a4a1e66b35efe3c48ddac1116537ef86e041717f3a9b9f1e060c74efa6","impliedFormat":1},{"version":"d7e4a5f4ccfb749c3033fafc233073b4d1dcca0249785186c589602a81f9d86f","impliedFormat":1},{"version":"68161b6f3004fc10f8bb47a4986cef13c3b0728fb1ca3e1dc7316227d09b2c8d","impliedFormat":1},{"version":"7ed7c893a59716284bf3e58e814d8e96075575abb24ea27034ef18fb9842c9c0","impliedFormat":99},{"version":"9b0815c45500f461613b5afaf20219eca32700efaeaf38510489e7794ab44c16","impliedFormat":99},{"version":"81ecaa0e513fc184ff4ad2d49c6ca92be897a0454d3c3813b50f5d24cbea5996","impliedFormat":99},{"version":"a16bc2d2b5446c1db7b3e14c2c9f176000204a241ca728352d9278be28c148c7","impliedFormat":99},{"version":"53d729791e5e1e7a838fecc0c63a08b1ad9df521cf18e7b11106e9c335b6d297","impliedFormat":99},{"version":"7093b3337b857e65866fcad4c98865e74e4d57e117eb3cf21720d7834bac8536","impliedFormat":99},{"version":"6df3dd86573ef3243f8fbc59af5f14cdd1788b4918929e065121f70888042ea0","impliedFormat":99},{"version":"a0e959d766ed08494960e6a426996aa05c818d661bc60b567463ead5a4b25da6","impliedFormat":1},{"version":"44835ca76f9096b1844773b2c189fc9ae6222f7722b581db51e14b2aa4afecf3","impliedFormat":1},{"version":"e53669c4c413188afb8d82490a54bd9db8d136b4e805e76bb2b435da21eb2804","impliedFormat":1},{"version":"5884b6426b90342f7d46ea69c24881130f9b97da0a9b75f52aa92cfe9695c437","impliedFormat":1},{"version":"acbe8504fd9b248c2f49b20cf3b944812ed5329a849eb66cecacd73d00c402a6","impliedFormat":1},{"version":"9143937234c3945b5de8b5868a16c37ba786c5f1df0dd149bea74904100f39ed","impliedFormat":1},{"version":"414e49c403f332d04c5efc5a1b78cba3137b0a49d37d1f93806631af5d077819","impliedFormat":1},{"version":"afce1656e33a5ec34ab7fc8cc442128c24a80bc4fadb34b97ae2cea2d599869f","impliedFormat":1},{"version":"312d0268ceb0b46746a1ff25d7a4ef98ae439b3438cb350f8b1211181b2564ca","impliedFormat":1},{"version":"47a35e3fdb93a718d6ba74d975ea0d94ff4505812634e8608dd53e1d6320db95","impliedFormat":1},{"version":"066252bf9fd913ed25dda07137547badef7be08874179aa88217b56d1a52aad0","impliedFormat":1},{"version":"d475524efda3df7e00f01982ce5532c45f480f2cc065bdef5b28984eaa422e44","impliedFormat":1},{"version":"902820a7d8472eca06407525e816c1e2565af8111b1129b6f00537fcc6c50a85","impliedFormat":1},{"version":"5ee08395d6d1cd9d5d68849c77abcffec59fffb69720a2bf3f9c0b73b2534313","impliedFormat":1},{"version":"888a9cd6f96d8bb1d9ce6ec24c528f7d64e033263ecab489b1c4a88fb85616c9","impliedFormat":1},{"version":"f3802246ed4f2ad05000fc363f3b9bca3a35c6b4c7c543d32e2f507b298b325b","impliedFormat":1},{"version":"b06495bb4256aec3f23a16f518bb6c109fc9f373b09c9157efd727f0b21756c4","impliedFormat":1},{"version":"fb074e3f3cc377ab26a1cb40c157f993c506de06a0ca3b536782e5828d7d3d13","impliedFormat":1},{"version":"a60c24a7ce9408233cbb9e6d72143196df92ddd3ae18b5c1e5c447a5de311c6f","impliedFormat":1},{"version":"5dab7f63859e2b45f5ae794ded0ce702e589fbf5cb8301da9491dc11394f7cda","impliedFormat":1},{"version":"6b27b834b2156fe0a78443a7b703b5fffec2c9c06dba61672dafa777dbe764b9","impliedFormat":1},{"version":"4a19b1680db3a88a84fa8bf989392a1e4a8685e7a559fc756b0a68649caaa880","impliedFormat":1},{"version":"676a0fde6e7d6e4cacf10aaea1d613f7e8dadab39149e536816759d5226613e6","impliedFormat":1},{"version":"8cdbf3b0261aa6a0da2c063b39cab5475d5d0fc69627dc91d746dad6efc2841e","impliedFormat":1},{"version":"c7ad9e8572e0b45b6a6a0613ff579179136fda4212240f42eb27073ab0cd3882","impliedFormat":1},{"version":"3bdf64bd022260f42c369f4843e03cc22dd1e330553cf9fcbef616dda36477c1","impliedFormat":1},{"version":"bf307b3a85e19b07ecbb0d4de375821a3e09ebe4ce96184ce8708b68a699ecce","impliedFormat":1},{"version":"dc370221cd956fe9d9968e8dbe7fe4bbe9415dc4f7f8354e1c812b377cacd8cc","impliedFormat":1},{"version":"71c30f8e8a6f74397a22161820d9d0cd80c71a64f77392fa198457bac1d1f9b0","impliedFormat":1},{"version":"4ac9eb5274b5e2e1e27139f430d8ca5083c8d0e3b1a97ae13eddd2c70be34cd4","impliedFormat":1},{"version":"2f238fc390bfbc3cc50e16322779faace9f059f490825529a4420c67c3b6c90f","impliedFormat":1},{"version":"83eab7426b2c6c785e243a0ece01eda2e449e9ef2df5b32434462963211dfffd","impliedFormat":99},{"version":"81fc9d6b00f26131a056a785b9bf096ffb6e8e00c53c12b69b35342d867e5a42","impliedFormat":99},{"version":"90908ad090504d369b3240814fea13e076fd7189e47dbb7cac5c34e2975c5085","impliedFormat":99},{"version":"46324183533e34fad2461b51174132e8e0e4b3ac1ceb5032e4952992739d1eab","impliedFormat":1},{"version":"d3fa0530dfb1df408f0abd76486de39def69ca47683d4a3529b2d22fce27c693","impliedFormat":1},{"version":"d9be977c415df16e4defe4995caeca96e637eeef9d216d0d90cdba6fc617e97e","impliedFormat":1},{"version":"98e0c2b48d855a844099123e8ec20fe383ecd1c5877f3895b048656befe268d0","impliedFormat":1},{"version":"ff53802a97b7d11ab3c4395aa052baa14cd12d2b1ed236b520a833fdd2a15003","impliedFormat":1},{"version":"fce9262f840a74118112caf685b725e1cc86cd2b0927311511113d90d87cc61e","impliedFormat":1},{"version":"d7a7cac49af2a3bfc208fe68831fbfa569864f74a7f31cc3a607f641e6c583fd","impliedFormat":1},{"version":"9a80e3322d08274f0e41b77923c91fe67b2c8a5134a5278c2cb60a330441554e","impliedFormat":1},{"version":"2460af41191009298d931c592fb6d4151beea320f1f25b73605e2211e53e4e88","impliedFormat":1},{"version":"2f87ea988d84d1c617afdeba9d151435473ab24cd5fc456510c8db26d8bd1581","impliedFormat":1},{"version":"b7336c1c536e3deaedbda956739c6250ac2d0dd171730c42cb57b10368f38a14","impliedFormat":1},{"version":"6fb67d664aaab2f1d1ad4613b58548aecb4b4703b9e4c5dba6b865b31bd14722","impliedFormat":1},{"version":"4414644199b1a047b4234965e07d189781a92b578707c79c3933918d67cd9d85","impliedFormat":1},{"version":"04a4b38c6a1682059eac00e7d0948d99c46642b57003d61d0fe9ccc9df442887","impliedFormat":1},{"version":"f12ea658b060da1752c65ae4f1e4c248587f6cd4cb4acabbf79a110b6b02ff75","impliedFormat":1},{"version":"011b2857871a878d5eae463bedc4b3dd14755dc3a67d5d10f8fbb7823d119294","impliedFormat":1},{"version":"4498108732bcb5b7000ff9cdc011058b4155e985271ac3f926468acfed0c79dd","impliedFormat":1},{"version":"36d7b72ed8f35f9e21cc223c06697eca0d4699178fc59cfd3a310e2983fd0fd6","impliedFormat":1},{"version":"5a5cbc7aa7c4f74f49073d747a2a2518d1ec22694c88bc46092b0f25ccb8ebb7","impliedFormat":1},{"version":"51bfe35171efe121cefb2501a6cd674c367d541c4c8b0ae639c126adcc84f37d","impliedFormat":1},{"version":"7ed7c893a59716284bf3e58e814d8e96075575abb24ea27034ef18fb9842c9c0","impliedFormat":99},{"version":"a3f2bfcdcadac846411650d12cef112ca1e070c2a71413a185a5532aa4c1275d","impliedFormat":1},{"version":"c675fd2a0285c8bb2ecbc063f39f605fe3ac6c066c583f1f503d39deddea6b53","impliedFormat":1},{"version":"b943e4cfae007bf0e8b5aa9cbb979865505e89586fd1e45bb7aabf0f855ed1d5","impliedFormat":99},{"version":"aa2bcfb4ee1878667c184449794b22020fb28286541a9d51a95c2d9c640da9ba","signature":"e6cf52a77bf607135dd7d60a6abb945453d61b4fa686a9432f66fbdde884b7db","impliedFormat":99},{"version":"87ca7658ca4850cbd6b7d92337dcac6214481ba9b60e127a5a4f112ae2af2d4e","signature":"115c3b377252c99b893b392c65246730ab1cff5a75e27f15c060dfb23db8ffe8","impliedFormat":99},{"version":"bcb6ea18f23dae2c48459d7b86d3adccd6898f824fcbf9da08b935f559896580","impliedFormat":1},{"version":"0aa7220845f5f3902fe043f646f9d9218bd7dd6c4046e8471580866ea6b03aa2","impliedFormat":1},{"version":"4d5fb5d6b35f731b2ae4d9d7c592d48e91d6de531dd130628edf4eba16add893","impliedFormat":1},{"version":"739c2c46edc112421fc023c24b4898b1f413f792bb6a02b40ba182c648e56c2f","impliedFormat":1},{"version":"df93bb67d5ae7be3d599323de42e12cb8da59f0b490c3186ae91d493632b5e36","affectsGlobalScope":true,"impliedFormat":1},{"version":"318816142496b1ab2122472d06e7679787b0d0c3d189ad671213bdc1f2531f94","affectsGlobalScope":true,"impliedFormat":99}],"options":{"composite":true,"declaration":true,"declarationMap":true,"downlevelIteration":true,"esModuleInterop":true,"importHelpers":true,"importsNotUsedAsValues":2,"module":99,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./dist","preserveValueImports":true,"rootDir":"./src","skipLibCheck":true,"sourceMap":true,"strict":true,"strictFunctionTypes":true,"strictNullChecks":true,"strictPropertyInitialization":true,"target":7},"fileIdsList":[[44,95],[95],[95,131,144,145],[95,131,137,139,142],[95,131,135],[95,131,140],[95,131,135,148],[95,131,132],[95,131,142,143],[95,131],[95,131,142,144,151],[95,131,148,150],[95,136,141],[95,131,132,133,136,138,139,142],[95,131,134,135],[95,131,134,138],[95,131,135,143],[95,131,135,136,138],[95,131,132,136],[95,131,132,138,139,140],[95,131,132,135,137],[95,131,135,147],[95,131,132,134,135,136,137,138,139,142,143,145,147,148,149,150,151,152,153,154,155,156,157,161],[95,131,136,142],[95,131,132,134,135,136,137,138,139,140,142,143,144,145,146,147,148,149,150,151,152,153,155,156,157,158,159,160],[95,131,132,133,134,136,138,139,142],[95,131,135,158,161],[95,131,151],[95,169,170],[95,170,171,172,173],[95,102,170,172],[95,169,171],[66,95,102],[66,95,102,165],[95,165,166,167,168],[95,165,167],[95,166],[83,95,102,174,175,176,179],[95,175,176,178],[65,95,102,174,175,176,177],[95,176],[95,174,175],[95,102,174],[46,95],[49,95],[52,95],[53,58,86,95],[54,65,66,73,83,94,95],[54,55,65,73,95],[56,95],[57,58,66,74,95],[58,83,91,95],[59,61,65,73,95],[60,95],[61,62,95],[65,95],[63,65,95],[65,66,67,83,94,95],[65,66,67,80,83,86,95],[95,99],[61,68,73,83,94,95],[65,66,68,69,73,83,91,94,95],[68,70,83,91,94,95],[49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101],[65,71,95],[72,94,95],[61,65,73,83,95],[74,95],[75,95],[52,76,95],[77,93,95,99],[78,95],[79,95],[65,80,81,95],[80,82,95,97],[53,65,83,84,85,86,95],[53,83,85,95],[83,84,95],[86,95],[87,95],[65,89,90,95],[89,90,95],[58,73,83,91,95],[92,95],[73,93,95],[53,68,79,94,95],[58,95],[83,95,96],[95,97],[95,98],[53,58,65,67,76,83,94,95,97,99],[83,95,100],[95,102,181,182,183],[95,181,182],[95,181],[95,102,180],[95,109],[95,109,121],[95,106,107,108,110,121],[95,112],[95,109,116,120,123],[95,111,123],[95,114,116,119,120,123],[95,114,116,117,119,120,123],[95,106,107,108,109,110,112,113,114,115,116,120,123],[95,105,106,107,108,109,110,112,113,114,115,116,117,119,120,121,122],[95,105,123],[95,116,117,118,120,123],[95,119,123],[95,109,115,120,123],[95,113,121],[95,105],[47,95],[95,100,124],[95,124,187],[95,124],[95,195],[65,66,68,70,73,83,91,94,95,100,102,103,104,123],[95,191],[95,192],[95,193,194],[95,125,126,127,128,129,130,162,163],[48,95,124],[48,95,128],[48,95,126,127],[48,95,126,161],[48,95],[43,95,189],[43,45,48,66,67,75,95,124,164,184,186,188],[65,66,68,70,73,83,91,94,95,100,102,123,197,198],[189],[124]],"referencedMap":[[45,1],[131,2],[146,3],[147,4],[154,5],[141,6],[149,7],[133,8],[144,9],[135,8],[148,10],[152,11],[132,10],[151,12],[142,13],[134,10],[140,14],[150,15],[139,16],[145,17],[137,18],[143,19],[136,20],[138,21],[153,22],[158,23],[155,24],[161,25],[156,26],[159,27],[160,27],[157,28],[171,29],[174,30],[173,31],[172,32],[170,33],[166,34],[169,35],[168,36],[167,37],[165,33],[180,38],[179,39],[178,40],[177,41],[176,42],[175,43],[47,44],[46,2],[49,45],[50,45],[52,46],[53,47],[54,48],[55,49],[56,50],[57,51],[58,52],[59,53],[60,54],[61,55],[62,55],[64,56],[63,57],[65,56],[66,58],[67,59],[51,60],[101,2],[68,61],[69,62],[70,63],[102,64],[71,65],[72,66],[73,67],[74,68],[75,69],[76,70],[77,71],[78,72],[79,73],[80,74],[81,74],[82,75],[83,76],[85,77],[84,78],[86,79],[87,80],[88,2],[89,81],[90,82],[91,83],[92,84],[93,85],[94,86],[95,87],[96,88],[97,89],[98,90],[99,91],[100,92],[103,2],[184,93],[183,94],[182,95],[181,96],[107,97],[106,98],[109,99],[113,100],[110,98],[115,101],[112,102],[117,103],[122,2],[118,104],[121,105],[123,106],[111,107],[119,108],[120,109],[116,110],[108,97],[114,111],[104,2],[105,112],[48,113],[43,2],[8,2],[10,2],[9,2],[2,2],[11,2],[12,2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[3,2],[4,2],[22,2],[19,2],[20,2],[21,2],[23,2],[24,2],[25,2],[5,2],[26,2],[27,2],[28,2],[29,2],[6,2],[33,2],[30,2],[31,2],[32,2],[34,2],[7,2],[35,2],[40,2],[41,2],[36,2],[37,2],[38,2],[39,2],[1,2],[42,2],[44,2],[186,114],[188,115],[187,116],[196,117],[124,118],[192,119],[191,2],[193,120],[194,2],[195,121],[185,118],[130,2],[164,122],[125,123],[129,124],[127,2],[128,125],[162,126],[163,127],[126,127],[190,128],[189,129]],"exportedModulesMap":[[45,1],[131,2],[146,3],[147,4],[154,5],[141,6],[149,7],[133,8],[144,9],[135,8],[148,10],[152,11],[132,10],[151,12],[142,13],[134,10],[140,14],[150,15],[139,16],[145,17],[137,18],[143,19],[136,20],[138,21],[153,22],[158,23],[155,24],[161,25],[156,26],[159,27],[160,27],[157,28],[171,29],[174,30],[173,31],[172,32],[170,33],[166,34],[169,35],[168,36],[167,37],[165,33],[180,38],[179,39],[178,40],[177,41],[176,42],[175,43],[47,44],[46,2],[49,45],[50,45],[52,46],[53,47],[54,48],[55,49],[56,50],[57,51],[58,52],[59,53],[60,54],[61,55],[62,55],[64,56],[63,57],[65,56],[66,58],[67,59],[51,60],[101,2],[68,61],[69,62],[70,63],[102,64],[71,65],[72,66],[73,67],[74,68],[75,69],[76,70],[77,71],[78,72],[79,73],[80,74],[81,74],[82,75],[83,76],[85,77],[84,78],[86,79],[87,80],[88,2],[89,81],[90,82],[91,83],[92,84],[93,85],[94,86],[95,87],[96,88],[97,89],[98,90],[99,91],[100,92],[103,2],[184,93],[183,94],[182,95],[181,96],[107,97],[106,98],[109,99],[113,100],[110,98],[115,101],[112,102],[117,103],[122,2],[118,104],[121,105],[123,106],[111,107],[119,108],[120,109],[116,110],[108,97],[114,111],[104,2],[105,112],[48,113],[43,2],[8,2],[10,2],[9,2],[2,2],[11,2],[12,2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[3,2],[4,2],[22,2],[19,2],[20,2],[21,2],[23,2],[24,2],[25,2],[5,2],[26,2],[27,2],[28,2],[29,2],[6,2],[33,2],[30,2],[31,2],[32,2],[34,2],[7,2],[35,2],[40,2],[41,2],[36,2],[37,2],[38,2],[39,2],[1,2],[42,2],[44,2],[186,114],[188,115],[187,116],[196,117],[124,130],[192,119],[191,2],[193,120],[194,2],[195,121],[185,130],[130,2],[164,122],[125,123],[129,124],[127,2],[128,125],[162,126],[163,127],[126,127],[190,131],[189,132]],"semanticDiagnosticsPerFile":[45,131,146,147,154,141,149,133,144,135,148,152,132,151,142,134,140,150,139,145,137,143,136,138,153,158,155,161,156,159,160,157,171,174,173,172,170,166,169,168,167,165,180,179,178,177,176,175,47,46,49,50,52,53,54,55,56,57,58,59,60,61,62,64,63,65,66,67,51,101,68,69,70,102,71,72,73,74,75,76,77,78,79,80,81,82,83,85,84,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,103,184,183,182,181,107,106,109,113,110,115,112,117,122,118,121,123,111,119,120,116,108,114,104,105,48,43,8,10,9,2,11,12,13,14,15,16,17,18,3,4,22,19,20,21,23,24,25,5,26,27,28,29,6,33,30,31,32,34,7,35,40,41,36,37,38,39,1,42,44,186,188,187,196,124,192,191,193,194,195,185,130,164,125,129,127,128,162,163,126,190,189],"latestChangedDtsFile":"./dist/vite-plugin.d.ts"},"version":"4.9.4"}
|