@marko/run 0.0.1-beta9 → 0.1.1

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/README.md CHANGED
@@ -13,7 +13,7 @@
13
13
  * 🚀 Fastest way to build a Marko app
14
14
  * 💖 Scales from zero configuration
15
15
  * ⚡️ Pages live-reload as you make changes
16
- * 📁 Directory-based routes, layouts and middleware
16
+ * 📁 Directory-based routes, layouts, and middleware
17
17
  * 🖌️ TypeScript powered editor support
18
18
  * 🧬 [Designed with web standards](https://developer.mozilla.org/en-US/docs/Web/API/URLPattern/URLPattern) to run anywhere
19
19
 
@@ -25,7 +25,6 @@ And when you build your production-ready app:
25
25
  * 🚢 Deploy to multiple platforms
26
26
 
27
27
  ## Installation
28
-
29
28
  > **Warning**
30
29
  > This project is in BETA - use at your own peril, but please do provide helpful feedback.
31
30
 
@@ -52,23 +51,23 @@ Finally open `http://localhost:3000` 🚀
52
51
 
53
52
  ### CLI
54
53
 
55
- **`dev`** - Start development server in watch mode
56
- ```bash
54
+ **`dev`** - Start a development server in watch mode
55
+ ```sh
57
56
  > npm exec marko-run
58
57
  ```
59
58
  or (with explicit sub command)
60
- ```bash
59
+ ```sh
61
60
  > npm exec marko-run dev
62
61
  ```
63
62
 
64
63
 
65
64
  **`build`** - Create a production build
66
- ```bash
65
+ ```sh
67
66
  > npm exec marko-run build
68
67
  ```
69
68
 
70
- **`preview`** - Create a production build and start preview server
71
- ```bash
69
+ **`preview`** - Create a production build and start the preview server
70
+ ```sh
72
71
  > npm exec marko-run preview
73
72
  ```
74
73
 
@@ -98,19 +97,17 @@ export default defineConfig({
98
97
 
99
98
  ### Routeable Files
100
99
 
101
- To allow for colocation of files that shouldn’t be served (like tests, assets, etc.), the router only recognizes certain filenames.
102
-
103
- The following filenames will be discovered in any directory inside your application’s [routes directory](#routes-directory).
100
+ The router only recognizes certain filenames which are all prefixed with `+` ([Why?](#What-about-markoserve)). The following filenames will be discovered in any directory inside your application’s [routes directory](#routes-directory).
104
101
 
105
102
  #### `+page.marko`
106
103
 
107
- These files establish a route at the current directory path which will be served for `GET` requests with the HTML content of the page. Only one page may exists for any served path.
104
+ These files establish a route at the current directory path which will be served for `GET` requests with the HTML content of the page. Only one page may exist for any served path.
108
105
 
109
106
  #### `+layout.marko`
110
107
 
111
108
  These files provide a **layout component**, which will wrap all nested layouts and pages.
112
109
 
113
- Layouts are like any other Marko component with no extra constraints. Each layout receives the request, path params, URL, and route metadata as input, as well as a `renderBody` which will be the next layout or page to project.
110
+ Layouts are like any other Marko component, with no extra constraints. Each layout receives the request, path params, URL, and route metadata as input, as well as a `renderBody` which refers to the nested page that is being rendered.
114
111
 
115
112
  ```marko
116
113
  <main>
@@ -137,36 +134,36 @@ Typically, these will be `.js` or `.ts` files depending on your project. Like pa
137
134
  - Handler functions are synchronous or asynchronous functions that
138
135
  - Receives a `context` and `next` argument,
139
136
  - The `context` argument contains the WHATWG request object, path parameters, URL, and route metadata.
140
- - The `next` argument will call the page for get requests where applicable or return a `204` response.
141
- - Return a WHATWG response, throw a WHATWG response, return undefined. If the function return's undefined the `next` argument with be automatically called and used as the response.
142
-
143
- ```js
144
- export function POST(context, next) {
145
- const { request, params, url, meta } = context;
146
- return new Response('Successfully updated', { status: 200 });
147
- }
148
-
149
- export function PUT(context, next) {
150
- // `next` will be called for you by the runtime
151
- }
152
-
153
- export async function GET(context, next) {
154
- // do something before calling `next`
155
- const response = await next();
156
- // do something with the response from `next`
157
- return response;
158
- }
159
-
160
- export function DELETE(context, next) {
161
- return new Response('Successfully removed', { status: 204 });
162
- }
163
- ```
137
+ - The `next` argument will call the page for `GET` requests where applicable or return a `204` response.
138
+ - Return a WHATWG response, throw a WHATWG response, and return undefined. If the function returns undefined the `next` argument with be automatically called and used as the response.
139
+
140
+ ```js
141
+ export function POST(context, next) {
142
+ const { request, params, url, meta } = context;
143
+ return new Response('Successfully updated', { status: 200 });
144
+ }
145
+
146
+ export function PUT(context, next) {
147
+ // `next` will be called for you by the runtime
148
+ }
149
+
150
+ export async function GET(context, next) {
151
+ // do something before calling `next`
152
+ const response = await next();
153
+ // do something with the response from `next`
154
+ return response;
155
+ }
156
+
157
+ export function DELETE(context, next) {
158
+ return new Response('Successfully removed', { status: 204 });
159
+ }
160
+ ```
164
161
  </details>
165
162
 
166
163
 
167
164
  #### `+middleware.*`
168
165
 
169
- These files are like layouts, but for handlers. Middleware get called before handlers and let you perform arbitrary work before and after.
166
+ These files are like layouts, but for handlers. Middleware files are called before handlers and let you perform arbitrary work before and after.
170
167
 
171
168
  > **Note**: Unlike handlers, middleware run for all HTTP methods.
172
169
 
@@ -180,33 +177,33 @@ These files are like layouts, but for handlers. Middleware get called before han
180
177
  - Handler functions are synchronous or asynchronous functions that
181
178
  - Receives a `context` and `next` argument,
182
179
  - The `context` argument contains the WHATWG request object, path parameters, URL, and route metadata.
183
- - The `next` argument will call the page for get requests where applicable or return a `204` response.
184
- - Return a WHATWG response, throw a WHATWG response, return undefined. If the function return's undefined the `next` argument with be automatically called and used as the response.
185
-
186
- ```ts
187
- export default async function(context, next) {
188
- const requestName = `${context.request.method} ${context.url.href}`;
189
- let success = true;
190
- console.log(`${requestName} request started`)
191
- try {
192
- return await next(); // Wait for subsequent middleware, handler and page
193
- } catch (err) {
194
- success = false;
195
- throw err;
196
- } finally {
197
- console.log(`${requestName} completed ${success ? 'successfully' : 'with errors'}`);
198
- }
199
- }
200
- ```
180
+ - The `next` argument will call the page for `GET` requests where applicable or return a `204` response.
181
+ - Return a WHATWG response, throw a WHATWG response, and return undefined. If the function returns undefined the `next` argument with be automatically called and used as the response.
182
+
183
+ ```ts
184
+ export default async function(context, next) {
185
+ const requestName = `${context.request.method} ${context.url.href}`;
186
+ let success = true;
187
+ console.log(`${requestName} request started`)
188
+ try {
189
+ return await next(); // Wait for subsequent middleware, handler, and page
190
+ } catch (err) {
191
+ success = false;
192
+ throw err;
193
+ } finally {
194
+ console.log(`${requestName} completed ${success ? 'successfully' : 'with errors'}`);
195
+ }
196
+ }
197
+ ```
201
198
  </details>
202
199
 
203
200
  #### `+meta.*`
204
201
 
205
- These files represent static metadata to attach to the route. This metadata will be automatically provided on the the route `context` when invoking a route.
202
+ These files represent static metadata to attach to the route. This metadata will be automatically provided on the route `context` when invoking a route.
206
203
 
207
204
  ### Special Files
208
205
 
209
- In addition to the files above which can be defined in any directory under the _routes directory_, there are some special files which can only be defined at the top-level of the _routes directory_. <!-- TODO: do we want to keep this restriction? Having nested 404s would be handy for disambiguating things like “there’s no user with that name” or “that promotion wasn’t found, it may have expired” -->
206
+ In addition to the files above which can be defined in any directory under the [routes directory](#routes-directory), some special files can only be defined at its top level. <!-- TODO: do we want to keep this restriction? Having nested 404s would be handy for disambiguating things like “there’s no user with that name” or “that promotion wasn’t found, it may have expired” -->
210
207
 
211
208
  These special pages are subject to a root layout file (`pages/+layout.marko` in the default configuration).
212
209
 
@@ -244,7 +241,7 @@ routes/
244
241
  +page.marko
245
242
  </pre>
246
243
 
247
- When the path `"/about"` is requested, the routable files execute in the following order:
244
+ When the path `/about` is requested, the routable files execute in the following order:
248
245
 
249
246
  1. Middlewares from root-most to leaf-most
250
247
  2. Handler
@@ -272,44 +269,44 @@ sequenceDiagram
272
269
 
273
270
  ### Path Structure
274
271
 
275
- Within the _routes directory_, the directory structure will determine the path the route will be served. There are four types of directory names: static, pathless, dynamic, and catch-all.
272
+ Within the [routes directory](#routes-directory), the directory structure determines the path from which the route is served. There are four types of directory names: **static**, **pathless**, **dynamic**, and **catch-all**.
276
273
 
277
- 1. **Static directories** - The most common type. Each static directory contributes its name as a segment in the route's served path, like a traditional fileserver. Unless a directory name matches the requirements for one of the below types, it defaults to a static directory.
274
+ 1. **Static directories** - The most common type, and the default behavior. Each static directory contributes its name as a segment in the route's served path, like a traditional fileserver. Unless a directory name matches the requirements for one of the below types, it is seen as a static directory.
278
275
 
279
- Examples:
280
- ```
281
- /foo
282
- /users
283
- /projects
284
- ```
276
+ Examples:
277
+ ```
278
+ /foo
279
+ /users
280
+ /projects
281
+ ```
285
282
 
286
- 2. **Pathless directories** - These directories do **not** contribute their name to the route's served path. Directory names that start with an underscore (`_`) will be a pathless directory.
283
+ 2. **Pathless directories** - These directories do **not** contribute their name to the route's served path. Directory names that start with an underscore (`_`) will be ignored when parsing the route.
287
284
 
288
- Examples:
289
- ```
290
- /_users
291
- /_public
292
- ```
285
+ Examples:
286
+ ```
287
+ /_users
288
+ /_public
289
+ ```
293
290
 
294
291
  3. **Dynamic directories** - These directories introduce a dynamic parameter to the route's served path and will match any value at that segment. Any directory name that starts with a single dollar sign (`$`) will be a dynamic directory, and the remaining directory name will be the parameter at runtime. If the directory name is exactly `$`, the parameter will not be captured but it will be matched.
295
292
 
296
- Examples:
297
- ```
298
- /$id
299
- /$name
300
- /$
301
- ```
293
+ Examples:
294
+ ```
295
+ /$id
296
+ /$name
297
+ /$
298
+ ```
302
299
 
303
300
  4. **Catch-all directories** - These directories are similar to dynamic directories and introduce a dynamic parameter, but instead of matching a single path segment, they match to the end of the path. Any directory that starts with two dollar signs (`$$`) will be a catch-all directory, and the remaining directory name will be the parameter at runtime. In the case of a directory named `$$`, the parameter name will not be captured but it will match. Catch-all directories can be used to make `404` Not Found routes at any level, including the root.
304
301
 
305
- Because catch-all directories match any path segment and consume the rest of the path, you cannot nest route files in them and no further directories will be traversed.
302
+ Because catch-all directories match any path segment and consume the rest of the path, you cannot nest route files in them and no further directories will be traversed.
306
303
 
307
- Examples:
308
- ```
309
- /$$all
310
- /$$rest
311
- /$$
312
- ```
304
+ Examples:
305
+ ```
306
+ /$$all
307
+ /$$rest
308
+ /$$
309
+ ```
313
310
 
314
311
  <!-- ### Match Ranking
315
312
 
@@ -334,7 +331,7 @@ export default defineConfig({
334
331
 
335
332
  ### Adapters
336
333
 
337
- Adapters provide the means to change the development, build and preview process to fit different deployment platforms and runtimes while allowing authors to write idiomatic code.
334
+ Adapters provide the means to change the development, build, and preview process to fit different deployment platforms and runtimes while allowing authors to write idiomatic code.
338
335
 
339
336
  Specify your adapter in the Vite config when registering the `@marko/run` plugin
340
337
 
@@ -356,7 +353,6 @@ export default defineConfig({
356
353
  - [@marko/run-adapter-node](https://github.com/marko-js/run/blob/main/packages/adapters/node/README.md)
357
354
  - [@marko/run-adapter-netlify](https://github.com/marko-js/run/blob/main/packages/adapters/netlify/README.md)
358
355
  - [@marko/run-adapter-static](https://github.com/marko-js/run/blob/main/packages/adapters/static/README.md)
359
-
360
356
  ## Runtime
361
357
 
362
358
  Generally, when using an adapter, this runtime will be abstracted away.
@@ -380,7 +376,12 @@ async function fetch<T>(request: Request, platform: T) => Promise<Response | voi
380
376
 
381
377
 
382
378
 
383
- This asynchronous function takes a [WHATWG `Request` object](https://fetch.spec.whatwg.org/#request-class) object and an object containing any platform specific data you may want access to and returns the [WHATWG `Response` object](https://fetch.spec.whatwg.org/#response-class) from executing any matched route files or undefined if the request was explicitly not handled. If no route matches the requested path, a `404` status code response will be returned. If an error occurs a `500` status code response will be returned.
379
+ This asynchronous function takes a [WHATWG `Request` object](https://fetch.spec.whatwg.org/#request-class) and an object containing any platform-specific data you may want access to, and returns any of
380
+
381
+ - a [WHATWG `Response` object](https://fetch.spec.whatwg.org/#response-class) (generated from executing any matched route files)
382
+ - `undefined` (if the request was not explicitly handled)
383
+ - a `404` status code response (if no route matches the requested path)
384
+ - a `500` status code response (if an error occurs)
384
385
 
385
386
  Express example:
386
387
  ```ts
@@ -397,7 +398,7 @@ express()
397
398
  });
398
399
 
399
400
  if (response) {
400
- // ...code to apply response to `res`
401
+ // ...code to apply a response to `res`
401
402
  } else {
402
403
  next();
403
404
  }
@@ -408,12 +409,12 @@ express()
408
409
 
409
410
  ### Other APIs
410
411
 
411
- In some cases you might want more control over when route matching and invokation (creating a response) occur. For instance you may have middleware in your server which need to know if there is a matched route. The runtime provides these additional methods
412
+ In some cases, you might want more control over when route matching and invocation (creating a response) occur. For instance, you may have middleware in your server which needs to know if there is a matched route. The runtime provides these additional methods:
412
413
 
413
414
  ### `Run.match`
414
415
 
415
416
  ```ts
416
- interface interface Route {
417
+ interface Route {
417
418
  params: Record<string, string>;
418
419
  meta: unknown;
419
420
  }
@@ -421,7 +422,7 @@ interface interface Route {
421
422
  function match(method: string, pathname: string) => Route | null;
422
423
  ```
423
424
 
424
- This synchronous function takes an HTTP method and path name, then returns an object representing the best match or `null` if no match is found.
425
+ This synchronous function takes an HTTP method and path name and returns an object representing the best match, or `null` if no match is found.
425
426
 
426
427
  - `params` - a `{ key: value }` collection of any path parameters for the route
427
428
  - `meta` - metadata for the route
@@ -462,7 +463,7 @@ express()
462
463
  });
463
464
 
464
465
  if (response) {
465
- // ...code to apply response to `res`
466
+ // ...code to apply a response to `res`
466
467
  } else {
467
468
  next();
468
469
  }
@@ -476,30 +477,30 @@ express()
476
477
 
477
478
 
478
479
  ### Global Namespace
479
- marko/run provides a global namespace `MarkoRun` with the folling types:
480
+ `marko/run` provides a global namespace `MarkoRun` with the following types:
480
481
 
481
482
  **`MarkoRun.Handler`** - Type that represents a handler function to be exported by a +handler or +middleware file
482
483
 
483
- **`MarkoRun.CurrentRoute`** - Type of the route's params and meta data
484
+ **`MarkoRun.CurrentRoute`** - Type of the route's params and metadata
484
485
 
485
486
  **`MarkoRun.CurrentContext`** - Type of the request context object in a handler and `out.global` in your Marko files
486
487
 
487
488
 
488
489
  ### Generated Types
489
- If a [TSConfig](https://www.typescriptlang.org/tsconfig) file is discovered in the project root, the Vite plugin will automatically generate a .d.ts file which provides more specific types for each of your middleware, handlers, layouts and pages. This file will be generated at `.marko-run/routes.d.ts` whenever the project is built - including dev.
490
- > **Note** TypeScript will not include this file by default. If you are not using the [Marko VSCode plugin](https://marketplace.visualstudio.com/items?itemName=Marko-JS.marko-vscode) and you will need to [add it in your tsconfig](https://www.typescriptlang.org/tsconfig#include).
490
+ If a [TSConfig](https://www.typescriptlang.org/tsconfig) file is discovered in the project root, the Vite plugin will automatically generate a .d.ts file which provides more specific types for each of your middleware, handlers, layouts, and pages. This file will be generated at `.marko-run/routes.d.ts` whenever the project is built - including dev.
491
+ > **Note** TypeScript will not include this file by default. You should use the [Marko VSCode plugin](https://marketplace.visualstudio.com/items?itemName=Marko-JS.marko-vscode) and [add it in your tsconfig](https://www.typescriptlang.org/tsconfig#include).
491
492
 
492
- These types are replaced with more specific versions per routeable file:
493
+ These types are replaced with more specific versions per routable file:
493
494
 
494
495
  **`MarkoRun.Handler`**
495
496
  - Overrides context with specific MarkoRun.CurrentContext
496
497
 
497
498
  **`MarkoRun.CurrentRoute`**
498
499
  - Adds specific parameters and meta types
499
- - In middleware and layouts which are used in many routes, this type will be a union of all possible routes that file will see
500
+ - In middleware and layouts which are used in many routes, this type will be a union of all possible routes that the file will see
500
501
 
501
502
  **`MarkoRun.CurrentContext`**
502
- - In middleware and layouts which are used in many routes, this type will be a union of all possible routes that file will see.
503
+ - In middleware and layouts which are used in many routes, this type will be a union of all possible routes that the file will see.
503
504
  - When an adapter is used, it can provide types for the platform
504
505
 
505
506
  ## Beta Roadmap
@@ -512,10 +513,10 @@ These types are replaced with more specific versions per routeable file:
512
513
 
513
514
  Once stable @marko/run will replace @marko/serve and improves upon that project in several critical ways.
514
515
 
515
- 1. Special "route files" (eg `+page.marko`) improve the developer ergonomics quite substantially. While they may cause a double take initially, making these explicit allows colocating additional components, tests, stories, config, utilities and whatever else you need along side the page components. With `@marko/serve` it was far to easy to "accidentally" serve some of your test fixtures :see-no-evil:.
516
- 2. @marko/serve was built around Webpack. Since Webpack doesn't have great support for SSR'd apps it meant that a lot of this work was up to us. This was not only a maintenance burden but also lead to some rough edges such as no HMR support (just full page reloading in dev). By switching to Vite with first class SSR support things all come together much more smoothly. And we're in good company (LINK TO OTHER META FRAMEWORKS ON VITE)!
517
- 3. @marko/serve was primarily designed with a node target in mind. @marko/run instead supports an "adaptor" model, where you can author in web standard apis and build your application to run in Node, Deno, Netlify, Cloudflare and even a static site.
518
- 4. The programatic api of `@marko/serve` left some to be desired which made it difficult to integrate into existing development servers and projects. Because of this public facing eBay applications (The largest consumer of Marko) we're note able to bring in `@marko/serve`. With `@marko/run` we've worked from the ground up to ensure a flexible enough programatic api to allow embedding in existing complex applications. Because of this we're confident that `@marko/run` will see much more use than `@marko/serve` and more investment from us!
519
- 5. Built in layout management. Strictly speaking Marko does not need the concept of `+layout.marko` "route file". If you've used Marko before you know it's very easy to treat layouts as normal components. But by bringing these layouts into the router we're able to reduce the amount of JavaScript naively sent to the browser, reduce the amount of boilerplate, and prime ourselves for some plans we have post Marko 6 :eyes:.
516
+ 1. Special "route files" (e.g. `+page.marko`) improve the developer ergonomics quite substantially. While they may cause a double take initially, making these explicit allows colocating additional components, tests, stories, config, utilities, and whatever else you need alongside the page components. With `@marko/serve` it was far too easy to "accidentally" serve some of your test fixtures :see-no-evil:.
517
+ 2. @marko/serve was built around Webpack. Since Webpack doesn't have great support for SSR, a lot of this work was up to us. This was not only a maintenance burden but also lead to some rough edges such as no HMR support (just full page reloading in dev). By switching to Vite with its first-class SSR support, things all come together much more smoothly. <!-- TODO: And we're in good company (LINK TO OTHER META FRAMEWORKS ON VITE)! -->
518
+ 3. @marko/serve was primarily designed with a node target in mind. @marko/run instead supports an "adapter" model, where you can author in web standard APIs and build your application to run in Node, Deno, Netlify, Cloudflare, and even a static site.
519
+ 4. The programmatic API of `@marko/serve` left some to be desired which made it difficult to integrate into existing development servers and projects. Because of this, public-facing applications at eBay (the largest consumer of Marko) were not able to bring in `@marko/serve`. With `@marko/run` we've worked from the ground up to ensure a flexible enough programmatic API to allow embedding in existing complex applications. Because of this, we're confident that `@marko/run` will see much more use than `@marko/serve` and more investment from us!
520
+ 5. Built-in layout management. Strictly speaking, Marko does not need the concept of `+layout.marko` "route file". If you've used Marko before you know it's very easy to treat layouts as normal components. But by bringing these layouts into the router we're able to reduce the amount of JavaScript naively sent to the browser, reduce the amount of boilerplate, and prime ourselves for some plans we have for after Marko 6 is out :eyes:.
520
521
 
521
- There's more of course, but we're committed to make `@marko/run` _the best way_ to build a Marko application.
522
+ There's more of course, but we're committed to making `@marko/run` the _best way_ to build a Marko application.
package/dist/.tsbuildinfo CHANGED
@@ -1 +1 @@
1
- {"program":{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/typescript/lib/lib.esnext.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/@types/node/ts4.8/assert.d.ts","../../../node_modules/@types/node/ts4.8/assert/strict.d.ts","../../../node_modules/@types/node/ts4.8/globals.d.ts","../../../node_modules/@types/node/ts4.8/async_hooks.d.ts","../../../node_modules/@types/node/ts4.8/buffer.d.ts","../../../node_modules/@types/node/ts4.8/child_process.d.ts","../../../node_modules/@types/node/ts4.8/cluster.d.ts","../../../node_modules/@types/node/ts4.8/console.d.ts","../../../node_modules/@types/node/ts4.8/constants.d.ts","../../../node_modules/@types/node/ts4.8/crypto.d.ts","../../../node_modules/@types/node/ts4.8/dgram.d.ts","../../../node_modules/@types/node/ts4.8/diagnostics_channel.d.ts","../../../node_modules/@types/node/ts4.8/dns.d.ts","../../../node_modules/@types/node/ts4.8/dns/promises.d.ts","../../../node_modules/@types/node/ts4.8/domain.d.ts","../../../node_modules/@types/node/ts4.8/dom-events.d.ts","../../../node_modules/@types/node/ts4.8/events.d.ts","../../../node_modules/@types/node/ts4.8/fs.d.ts","../../../node_modules/@types/node/ts4.8/fs/promises.d.ts","../../../node_modules/@types/node/ts4.8/http.d.ts","../../../node_modules/@types/node/ts4.8/http2.d.ts","../../../node_modules/@types/node/ts4.8/https.d.ts","../../../node_modules/@types/node/ts4.8/inspector.d.ts","../../../node_modules/@types/node/ts4.8/module.d.ts","../../../node_modules/@types/node/ts4.8/net.d.ts","../../../node_modules/@types/node/ts4.8/os.d.ts","../../../node_modules/@types/node/ts4.8/path.d.ts","../../../node_modules/@types/node/ts4.8/perf_hooks.d.ts","../../../node_modules/@types/node/ts4.8/process.d.ts","../../../node_modules/@types/node/ts4.8/punycode.d.ts","../../../node_modules/@types/node/ts4.8/querystring.d.ts","../../../node_modules/@types/node/ts4.8/readline.d.ts","../../../node_modules/@types/node/ts4.8/readline/promises.d.ts","../../../node_modules/@types/node/ts4.8/repl.d.ts","../../../node_modules/@types/node/ts4.8/stream.d.ts","../../../node_modules/@types/node/ts4.8/stream/promises.d.ts","../../../node_modules/@types/node/ts4.8/stream/consumers.d.ts","../../../node_modules/@types/node/ts4.8/stream/web.d.ts","../../../node_modules/@types/node/ts4.8/string_decoder.d.ts","../../../node_modules/@types/node/ts4.8/test.d.ts","../../../node_modules/@types/node/ts4.8/timers.d.ts","../../../node_modules/@types/node/ts4.8/timers/promises.d.ts","../../../node_modules/@types/node/ts4.8/tls.d.ts","../../../node_modules/@types/node/ts4.8/trace_events.d.ts","../../../node_modules/@types/node/ts4.8/tty.d.ts","../../../node_modules/@types/node/ts4.8/url.d.ts","../../../node_modules/@types/node/ts4.8/util.d.ts","../../../node_modules/@types/node/ts4.8/v8.d.ts","../../../node_modules/@types/node/ts4.8/vm.d.ts","../../../node_modules/@types/node/ts4.8/wasi.d.ts","../../../node_modules/@types/node/ts4.8/worker_threads.d.ts","../../../node_modules/@types/node/ts4.8/zlib.d.ts","../../../node_modules/@types/node/ts4.8/globals.global.d.ts","../../../node_modules/@types/node/ts4.8/index.d.ts","../../../node_modules/vite/node_modules/esbuild/lib/main.d.ts","../../../node_modules/vite/types/metadata.d.ts","../../../node_modules/vite/types/hmrpayload.d.ts","../../../node_modules/vite/types/customevent.d.ts","../../../node_modules/rollup/dist/rollup.d.ts","../../../node_modules/vite/types/importglob.d.ts","../../../node_modules/source-map-js/source-map.d.ts","../../../node_modules/postcss/lib/comment.d.ts","../../../node_modules/postcss/lib/at-rule.d.ts","../../../node_modules/postcss/lib/rule.d.ts","../../../node_modules/postcss/lib/container.d.ts","../../../node_modules/postcss/lib/declaration.d.ts","../../../node_modules/postcss/lib/previous-map.d.ts","../../../node_modules/postcss/lib/input.d.ts","../../../node_modules/postcss/lib/css-syntax-error.d.ts","../../../node_modules/postcss/lib/warning.d.ts","../../../node_modules/postcss/lib/document.d.ts","../../../node_modules/postcss/lib/root.d.ts","../../../node_modules/postcss/lib/lazy-result.d.ts","../../../node_modules/postcss/lib/no-work-result.d.ts","../../../node_modules/postcss/lib/processor.d.ts","../../../node_modules/postcss/lib/result.d.ts","../../../node_modules/postcss/lib/node.d.ts","../../../node_modules/postcss/lib/list.d.ts","../../../node_modules/postcss/lib/postcss.d.ts","../../../node_modules/vite/dist/node/index.d.ts","../src/runtime/types.ts","../src/runtime/index.ts","../../../node_modules/undici/types/header.d.ts","../../../node_modules/undici/types/readable.d.ts","../../../node_modules/undici/types/file.d.ts","../../../node_modules/undici/types/fetch.d.ts","../../../node_modules/undici/types/formdata.d.ts","../../../node_modules/undici/types/connector.d.ts","../../../node_modules/undici/types/client.d.ts","../../../node_modules/undici/types/errors.d.ts","../../../node_modules/undici/types/dispatcher.d.ts","../../../node_modules/undici/types/global-dispatcher.d.ts","../../../node_modules/undici/types/global-origin.d.ts","../../../node_modules/undici/types/pool-stats.d.ts","../../../node_modules/undici/types/pool.d.ts","../../../node_modules/undici/types/handlers.d.ts","../../../node_modules/undici/types/balanced-pool.d.ts","../../../node_modules/undici/types/agent.d.ts","../../../node_modules/undici/types/mock-interceptor.d.ts","../../../node_modules/undici/types/mock-agent.d.ts","../../../node_modules/undici/types/mock-client.d.ts","../../../node_modules/undici/types/mock-pool.d.ts","../../../node_modules/undici/types/mock-errors.d.ts","../../../node_modules/undici/types/proxy-agent.d.ts","../../../node_modules/undici/types/api.d.ts","../../../node_modules/undici/types/cookies.d.ts","../../../node_modules/undici/types/patch.d.ts","../../../node_modules/undici/types/filereader.d.ts","../../../node_modules/undici/types/diagnostics-channel.d.ts","../../../node_modules/undici/types/websocket.d.ts","../../../node_modules/undici/types/content-type.d.ts","../../../node_modules/undici/types/interceptors.d.ts","../../../node_modules/undici/index.d.ts","../src/adapter/polyfill.ts","../src/adapter/middleware.ts","../src/adapter/dev-server.ts","../../../node_modules/@types/minimatch/index.d.ts","../../../node_modules/@types/glob/index.d.ts","../../../node_modules/magic-string/index.d.ts","../../../node_modules/@marko/babel-utils/index.d.ts","../../../node_modules/@marko/compiler/dist/types.d.ts","../../../node_modules/@marko/compiler/dist/traverse.d.ts","../../../node_modules/@marko/compiler/babel-types.d.ts","../../../node_modules/@marko/compiler/config.d.ts","../../../node_modules/@marko/compiler/index.d.ts","../../../node_modules/@marko/vite/dist/store/types.d.ts","../../../node_modules/@marko/vite/dist/store/file-store.d.ts","../../../node_modules/@marko/vite/dist/store/memory-store.d.ts","../../../node_modules/@marko/vite/dist/store/index.d.ts","../../../node_modules/@marko/vite/dist/index.d.ts","../src/vite/constants.ts","../src/vite/types.ts","../src/vite/routes/walk.ts","../src/vite/routes/builder.ts","../src/vite/codegen/writer.ts","../src/vite/routes/routetrie.ts","../src/vite/utils/route.ts","../src/vite/codegen/index.ts","../../../node_modules/@babel/types/lib/index.d.ts","../src/vite/utils/ast.ts","../../../node_modules/cli-table3/index.d.ts","../../../node_modules/kleur/index.d.ts","../../../node_modules/gzip-size/index.d.ts","../../../node_modules/@types/human-format/index.d.ts","../src/vite/utils/log.ts","../src/vite/utils/config.ts","../src/vite/plugin.ts","../../../node_modules/dotenv/lib/main.d.ts","../src/vite/utils/server.ts","../src/vite/index.ts","../src/adapter/index.ts","../src/runtime/internal.ts","../src/runtime/router.ts","../../../node_modules/@types/connect/index.d.ts","../../../node_modules/@types/body-parser/index.d.ts","../../../node_modules/@types/range-parser/index.d.ts","../../../node_modules/@types/qs/index.d.ts","../../../node_modules/@types/express-serve-static-core/index.d.ts","../../../node_modules/@types/mime/mime.d.ts","../../../node_modules/@types/mime/index.d.ts","../../../node_modules/@types/serve-static/index.d.ts","../../../node_modules/@types/express/index.d.ts","../../../node_modules/@types/compression/index.d.ts","../../../node_modules/@types/mocha/index.d.ts","../../../node_modules/@types/parse-json/index.d.ts"],"fileInfos":[{"version":"f20c05dbfe50a208301d2a1da37b9931bce0466eb5a1f4fe240971b4ecc82b67","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9","746d62152361558ea6d6115cf0da4dd10ede041d14882ede3568bce5dc4b4f1f","d11a03592451da2d1065e09e61f4e2a9bf68f780f4f6623c18b57816a9679d17","aea179452def8a6152f98f63b191b84e7cbd69b0e248c91e61fb2e52328abe8c",{"version":"9b087de7268e4efc5f215347a62656663933d63c0b1d7b624913240367b999ea","affectsGlobalScope":true},{"version":"3260e3386d9535b804205bdddb5618a9a27735bd22927f48ad54363abcd23d45","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"55f400eec64d17e888e278f4def2f254b41b89515d3b88ad75d5e05f019daddd","affectsGlobalScope":true},{"version":"181f1784c6c10b751631b24ce60c7f78b20665db4550b335be179217bacc0d5f","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"775d9c9fd150d5de79e0450f35bc8b8f94ae64e3eb5da12725ff2a649dccc777","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"6c55633c733c8378db65ac3da7a767c3cf2cf3057f0565a9124a16a3a2019e87","affectsGlobalScope":true},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true},{"version":"34c839eaaa6d78c8674ae2c37af2236dee6831b13db7b4ef4df3ec889a04d4f2","affectsGlobalScope":true},{"version":"34478567f8a80171f88f2f30808beb7da15eac0538ae91282dd33dce928d98ed","affectsGlobalScope":true},{"version":"ab7d58e6161a550ff92e5aff755dc37fe896245348332cd5f1e1203479fe0ed1","affectsGlobalScope":true},{"version":"6bda95ea27a59a276e46043b7065b55bd4b316c25e70e29b572958fa77565d43","affectsGlobalScope":true},{"version":"aedb8de1abb2ff1095c153854a6df7deae4a5709c37297f9d6e9948b6806fa66","affectsGlobalScope":true},{"version":"a4da0551fd39b90ca7ce5f68fb55d4dc0c1396d589b612e1902f68ee090aaada","affectsGlobalScope":true},{"version":"11ffe3c281f375fff9ffdde8bbec7669b4dd671905509079f866f2354a788064","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"7e771891adaa85b690266bc37bd6eb43bc57eecc4b54693ead36467e7369952a","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"02873d070f9cb79f50833fbf4a9a27ac578a2edf8ddb8421eba1b37faba83bfb","affectsGlobalScope":true},"21a167fec8f933752fb8157f06d28fab6817af3ad9b0bdb1908a10762391eab9",{"version":"c0db280fa6b09d7b8d6720a19a47f485956a41ee0e6914f1b704033eb69c6058","affectsGlobalScope":true},"374ca798f244e464346f14301dc2a8b4b111af1a83b49fffef5906c338a1f922","5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713",{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","dab86d9604fe40854ef3c0a6f9e8948873dc3509213418e5e457f410fd11200f","bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","489532ff54b714f0e0939947a1c560e516d3ae93d51d639ab02e907a0e950114","f30bb836526d930a74593f7b0f5c1c46d10856415a8f69e5e2fc3db80371e362","14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea",{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true},{"version":"816ad2e607a96de5bcac7d437f843f5afd8957f1fa5eefa6bba8e4ed7ca8fd84","affectsGlobalScope":true},"cec36af22f514322f870e81d30675c78df82ae8bf4863f5fd4e4424c040c678d","d903fafe96674bc0b2ac38a5be4a8fc07b14c2548d1cdb165a80ea24c44c0c54","5eec82ac21f84d83586c59a16b9b8502d34505d1393393556682fe7e7fde9ef2","04eb6578a588d6a46f50299b55f30e3a04ef27d0c5a46c57d8fcc211cd530faa","8d3c583a07e0c37e876908c2d5da575019f689df8d9fa4c081d99119d53dba22","2c828a5405191d006115ab34e191b8474bc6c86ffdc401d1a9864b1b6e088a58",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"d4ac44f01d42f541631c5fc88d0ed8efac29a3a3ad9a745d9fd58f8b61ed132e","7c013aa892414a7fdcfd861ae524a668eaa3ede8c7c0acafaf611948122c8d93","b0973c3cbcdc59b37bf477731d468696ecaf442593ec51bab497a613a580fe30",{"version":"4989e92ba5b69b182d2caaea6295af52b7dc73a4f7a2e336a676722884e7139d","affectsGlobalScope":true},{"version":"b3624aed92dab6da8484280d3cb3e2f4130ec3f4ef3f8201c95144ae9e898bb6","affectsGlobalScope":true},"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","210d54cd652ec0fec8c8916e4af59bb341065576ecda039842f9ffb2e908507c","36b03690b628eab08703d63f04eaa89c5df202e5f1edf3989f13ad389cd2c091","0effadd232a20498b11308058e334d3339cc5bf8c4c858393e38d9d4c0013dcf","25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","3163f47436da41706c6e2b3c1511f3b7cce9f9f3905b2f3e01246c48b4ba7d14","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","69ee23dd0d215b09907ad30d23f88b7790c93329d1faf31d7835552a10cf7cbf","44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","223c37f62ce09a3d99e77498acdee7b2705a4ae14552fbdb4093600cd9164f3f",{"version":"970a90f76d4d219ad60819d61f5994514087ba94c985647a3474a5a3d12714ed","affectsGlobalScope":true},"e10177274a35a9d07c825615340b2fcde2f610f53f3fb40269fd196b4288dda6","4c8525f256873c7ba3135338c647eaf0ca7115a1a2805ae2d0056629461186ce","3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2",{"version":"f0900cd5d00fe1263ff41201fb8073dbeb984397e4af3b8002a5c207a30bdc33","affectsGlobalScope":true},{"version":"4c50342e1b65d3bee2ed4ab18f84842d5724ad11083bd666d8705dc7a6079d80","affectsGlobalScope":true},"06d7c42d256f0ce6afe1b2b6cfbc97ab391f29dadb00dd0ae8e8f23f5bc916c3","ec4bd1b200670fb567920db572d6701ed42a9641d09c4ff6869768c8f81b404c","e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa",{"version":"da26af7362f53d122283bc69fed862b9a9fe27e01bc6a69d1d682e0e5a4df3e6","affectsGlobalScope":true},"8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"652ee9c5103e89102d87bc20d167a02a0e3e5e53665674466c8cfea8a9e418c7","f05dce044af53a0b39d9540b53b0841e11c642908959bb865080288c1e24ebeb","8f07f2b6514744ac96e51d7cb8518c0f4de319471237ea10cf688b8d0e9d0225","bcb6ea18f23dae2c48459d7b86d3adccd6898f824fcbf9da08b935f559896580","0aa7220845f5f3902fe043f646f9d9218bd7dd6c4046e8471580866ea6b03aa2","8bff1a31f450aeb1dc454de28fa419ea8c15831bbc8469832ea6f609b9999ed4","739c2c46edc112421fc023c24b4898b1f413f792bb6a02b40ba182c648e56c2f","858d0d831826c6eb563df02f7db71c90e26deadd0938652096bea3cc14899700","d1c89db652113258e4ba4bbdf5cc7a2a3a600403d4d864a2087b95186253cd5b","11a90d2cb2eaf7fdf931a63b58279e8161f1477a1bd1e914ae026c1bbf9afed3","af18e30f3ba06e9870b61dfa4a109215caabdaa337590c51b4a044a9f338ce96","ace603f7b60599f2dcdbd71c07137b60a747dd33be540f4a294b890f9e0b89dc","7658fbdd425c656fb1849b44932ae7431e8c3198d22c65ce1490deb582743b52","7786c75c1b46e93b33c63dccf689143a5f47ff451a6b3bd9b10e4801cdeadcc2","dbef2851e33a4c2fd2f3164fec70e45df647eb0e87f250de784500a3037e2c37","31491a01ed7466e0b3b0ef8407f2524683055eceb955b1d5ccf7096129468b39","f4b12f7dde4fc0e386648318481bdcfe861b566be246bebf0e8a11ebd909adf9","e8966f7c424780bb0b9d411ebe13eda8555ca15aa675603316c2952bc027b0e3","df0e5f3c4a518111d160cf3bebc9a3ac7d39c6e3bfb7a21d43c304896c3015e2","df4e2f161f74870708c2cc5e1036a6405b878496408fda1ee50d5b10e50d6601","bf791da347fb1c0ffc1e2fcd35867e64bb8355270ae26278198c521bdcf94569","e0e0e3c068e145fbb322120979299ff130ffdd39f0dcd0d5aeaa9f3f8a0d01d9","fde91356172e35b9ea68bbdf33721f7c80307a4ce65b82105eac800e9e744995","9bd5e5a4a1e66b35efe3c48ddac1116537ef86e041717f3a9b9f1e060c74efa6","d7e4a5f4ccfb749c3033fafc233073b4d1dcca0249785186c589602a81f9d86f","68161b6f3004fc10f8bb47a4986cef13c3b0728fb1ca3e1dc7316227d09b2c8d","78c7b6467e0fa14eb0b465af39d6e6ac90c13e0607695a1367c71d33333bb7d5",{"version":"8a8ae6b256d36b0e9e601171b84e0254e2053413d1fc7cdc6271b8b8f98fc3e1","signature":"c3fed407be7cf0dfbec2cd07eac3ef8ec5e357289aae206a1859ca418010fe3c"},{"version":"70aff84abb09620960fc1363525ae59efac888534453348ba621a754ede154fe","signature":"690529b3de5d4033590c338bb7161e61efff5b8a8968504952ec4e4834253fec","affectsGlobalScope":true},"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","0589c85b507c2b90458bf7f87c2aebb0879a251fa119f2464350113d93113a32","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","54cb85a47d760da1c13c00add10d26b5118280d44d58e6908d8e89abbd9d7725","3e4825171442666d31c845aeb47fcd34b62e14041bb353ae2b874285d78482aa","db6c2d64e5c642b4e08a136a15ef7155452fc7072513ac5b18a03b8e8107fe45","d9bf99a360cb3dfdc87b7e4988d63115cb30bf180f2bcfd56f425d2aee49925f","2e98c8d346012b9ac4f372d5a0ba7930ec413e45822d52a833dcde4a1cca91eb","85b5d54fc8586dc83c99934f02df83954282725ffcbd6631d4aa0ec81afb8671","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","db3435f3525cd785bf21ec6769bf8da7e8a776be1a99e2e7efb5f244a2ef5fee","c3b170c45fc031db31f782e612adf7314b167e60439d304b49e704010e7bafe5","8b23b832eb8547e6ef837f2c86a2354bcc4a52f5a51b6f0c82da48dd71961bf1","80ad053918e96087d9da8d092ff9f90520c9fc199c8bfd9340266dd8f38f364e","3a84b7cb891141824bd00ef8a50b6a44596aded4075da937f180c90e362fe5f6","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","cf01820a6625d372b406150fc8bbaaf82326dad57088a09d546df4619fcf4d2e","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","9f0a92164925aa37d4a5d9dd3e0134cff8177208dba55fd2310cd74beea40ee2","f436b69387a990543d96787d1671b601a1ca624c420edc53560cb3d742f132fb","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","d32275be3546f252e3ad33976caf8c5e842c09cb87d468cb40d5f4cf092d1acc","e4da0dc0982bc3ecaed637009f74a847b8d3fe06cbcf9f5e83b8ce8b0ed5d393",{"version":"e7524c4e71eb352d4798b4d83b761a5cd703b8722d3c8de29fb2f5fd00fef7ae","signature":"44a848e913ff15fdc276433caaf5ca887c3ad0e730c488c700383912cfdc5b01"},{"version":"c18667d1cf6133a10ad8277ea19c78a413e2f9439b854c827e0fced9d4ccd296","signature":"0fa27571d00fcb0249f6ded53e889bbcc44f8c2dfc79dcef1b53a24499c5fbca"},{"version":"91568abc9d2bb10b55844d306ce1d8456b92b441b380a34e3b4b9ec6dc27ac4b","signature":"5e533490911188e94cde9ecaef198400fd71d03d253fd05d4bf516c67eeaa175"},"963d59066dd6742da1918a6213a209bcc205b8ee53b1876ee2b4e6d80f97c85e","a55ca8b5f8c6a8535bb26fac1e10132a5338234ca3d5b9ed739fbc8ef41c8075","7d2e8108a8d5104af657b553719cebbdc853c9b4ef6fcd61eed61cf5e08c887d","7b2c69215c38b985deeb5383888c97649fa614c85e0ffc3f59a7ee29c79f40ad","24568dcf744ed1a9700063a95362d507494180a671b4fbad1a72acf42e33ca42","737553ba98c20db05b610925e8106ba095707bb3af134229460c04fece8222de","27560169815f4eb65fd27e58a2ab5f1ee204c41c15484774de8cb9f8e0a4b578","5380aeeedece7663d123c548a2baf9209577fa270c6dd34f801e3401c633e463","d9e74b6fa3a9c501f4211daf19c300ff782e827dd4934a1188a37c00c7a1335c","93c8b225a9da82b35a6ccc81d9b9110ecd7f7264e711a505fde11de7ab937451","f45d5b8919f317b3decca1afb1f4357a9a83f20e774e0b7a53bdf02fc749db99","db848adfda3f25a5726066d4b84630cfeaee605d13171b19cf54d157cee612d6","0edf585c43954817bc6cae2411f6af9810af08ca39044ccd40122456235f314e","d6bb90af219c3713408075b9779d0894e93227a2777924b09f6bf930804f1428",{"version":"6a047d3fc0fbe3607188e07d04f588e22846dbd72b4e0b49cbfbd3cd2e27f414","signature":"cd77a3729d879c6986588bb950807674ed12a97bd2d2e3592b835f725f3d59bd"},{"version":"2c7fd83aa7b681bbce21b81ba55ecb2d658f41927426a1e4fe08a9447b7b878c","signature":"98b790989eb0e3b5478f9a359bfd68a412465ee5e3d9f827a27282ffb29dcf7c"},{"version":"c24c426a7df76ba13632f17cafb810387a6592e90899976851b95c054dc18ca4","signature":"48ebee34ad5fad861968dd42d94730c752df4bb4a89409da5d5a12fc2dd9617e"},{"version":"2a7833419b55a3d2c4398c02b7cbd01ab933c6266ad50d6c9cf22cebf572cdaa","signature":"7c818fe456a538663b89785111756cf9d7ce6fefda430b572a8d22a48dd31739"},{"version":"803d29d02ba47713168639b7d6d438ba2bafc836035d9d1e7abfac5d608229ec","signature":"46238c172356216ae0fdc56a47ccf7c07506062eda8276590d52fb8585fe7d08"},{"version":"df183dacdf7ac14916e06b8361b7ddc768b1447ce59e8d6d6b4293d0a6cd4aae","signature":"b3e32fb86dd71104f4fea5efe4839fcec9bb89659bdf0a4aa0ccd68fde2ca4e9"},{"version":"3e7025fa170435e50f393c7fe75bfdc99fe874b44fe50de148ec5242f75941fe","signature":"44428f74bf9a1b9df881b0e2e72b4036c6a80cfe84ab2a75bd8501efa4f1c9d9"},{"version":"522effd9831560a0a33423aafaa8e9a344c3bc49450ea3fe1c47a83526557255","signature":"06f4f6c7ee82dfaf3679a0107c00106406c1a688d0e94b49dbf1e19557dc96ed"},"c561efdf5ba0b62619745d4761fe2d9756f23db972e039367d15922fed67fd2f",{"version":"8edb7e8f82f7eefe4212848d6b6bff2e2fb0319cb9c1822d6e45e9e5d6e87d45","signature":"1f11365b8a4c385627c3df832da56fe501c5502799627cc998d0953bab447559"},"e6d2c107b358421399671d5afc04f9a0993833121c74bcbd3648ac3a65770936","6ab263df6465e2ed8f1d02922bae18bb5b407020767de021449a4c509859b22e","272291278c861cd68a097674773fe90b2d7a66f1da4e542d3aa814e8a06ee713","98380aa684fdfceb8b7107e302c62c207dbc1b60a249f6ce714277f103ba642b",{"version":"3967ec35d9c2e8e3b1ffa119b5422bdd123f21f0a4fc48914847a5ef6683e752","signature":"5a9f0842480ec222faf513217d0cb2fdf798e48831e56c62d3a575fed6c9c96a"},{"version":"ad9a77ed9ebf923071e1ded384388c0d2520936c246f9cfd040b5cd7d8c1c809","signature":"04d74cd36a20354e300041ad60390aae9f2fe37162cd2df8080b738e14ebd747"},{"version":"3b426aca20666a41ed6a27122a199481b92633f35ef9aa2368d5a728449c607a","signature":"ec0813eb2a5baaff37494fe7b3ac7f1076660430ff12ea74d6ce75dd503245a6"},"cfdd927a5eae7a7e623b9745722ef3f2b7a2997fddc5d32b7e3dcaeeb15ff4a3",{"version":"b77a765400e852a541ad85e3f7decaca85e8b0ddca360c6c2368278c54b8ff3d","signature":"349110fbb824c1719e8de0c7627c91bb4a875e75b7085f189888011e1e00dd23"},{"version":"ec70602ae60013833d26e459067d079a705a5658cfbe788da88700e46ed8d379","signature":"91afd8a2b4230e2830a040d4f48b2bc9ecb92db6244656a45932bf05670ca8f0"},{"version":"1fba983b85706217b708f26cf6064373782342ad9a9f842456242a3103e3aceb","signature":"61b167e597246e8b0616f6ae2e4abe2e3d3fb6530084bccc1d27be10966e1105"},{"version":"cbac0f09c7637ef5b43b20674f9a27bd1bc7157d5b67d2fb0aaab3ba61cc0514","signature":"0d755deaa110c081388b78d5ecd5b49908853d7d3f251d7af81821b1cc95a757"},{"version":"1cda2a4f2807f673c15d7818791d82b15d8ebfb3a5ade6f9aaa79f2020717b21","signature":"acabf8e4e3b870df53bd1e238c2dbdd6f5cc8db7dc6924fb9a4cbdc6a2180dd3"},"6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","afc559c1b93df37c25aef6b3dfa2d64325b0e112e887ee18bf7e6f4ec383fc90","16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",{"version":"ae3fe461989bbd951344efc1f1fe932360ce7392e6126bdb225a82a1bbaf15ee","affectsGlobalScope":true},"5b9ecf7da4d71cf3832dbb8336150fa924631811f488ad4690c2dfec2b4fb1d7","951c85f75aac041dddbedfedf565886a7b494e29ec1532e2a9b4a6180560b50e","f47887b61c6cf2f48746980390d6cb5b8013518951d912cfb37fe748071942be","15c88bfd1b8dc7231ff828ae8df5d955bae5ebca4cf2bcb417af5821e52299ae",{"version":"717e5f864ab6e755a23b66a7935920d9a73ec7d4728b84ddf85c1d334a9414ae","affectsGlobalScope":true},{"version":"3f6d6465811321abc30a1e5f667feed63e5b3917b3d6c8d6645daf96c75f97ba","affectsGlobalScope":true},"2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b"],"options":{"allowSyntheticDefaultImports":true,"allowUnreachableCode":false,"allowUnusedLabels":false,"composite":true,"emitDeclarationOnly":true,"esModuleInterop":true,"importsNotUsedAsValues":2,"module":99,"noFallthroughCasesInSwitch":true,"noImplicitOverride":true,"noImplicitReturns":false,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","rootDir":"../src","sourceMap":false,"strict":true,"stripInternal":true,"target":99,"tsBuildInfoFile":"./.tsbuildinfo"},"fileIdsList":[[102],[102,180],[102,176,177],[73,102],[102,176,180],[102,174,175,178,179],[102,135,180,184],[102,181],[102,181,182,183],[75,102,109,169,170,209],[102,217],[75,102,109,169,170],[72,75,102,109,169,170,211,212],[102,210,212,213,216],[72,73,102,109,172],[102,214],[102,215],[56,102],[59,102],[60,65,93,102],[61,72,73,80,90,101,102],[61,62,72,80,102],[63,102],[64,65,73,81,102],[65,90,98,102],[66,68,72,80,102],[67,102],[68,69,102],[72,102],[70,72,102],[72,73,74,90,101,102],[72,73,74,87,90,93,102],[102,106],[68,75,80,90,101,102,169,170],[72,73,75,76,80,90,98,101,102],[75,77,90,98,101,102],[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,106,107,108],[72,78,102],[79,101,102],[68,72,80,90,102,170],[81,102],[82,102],[59,83,102],[84,100,102,106],[85,102],[86,102],[72,87,88,102],[87,89,102,104],[60,72,90,91,92,93,102],[60,90,92,102],[90,91,102],[93,102],[94,102],[72,96,97,102],[96,97,102],[65,80,90,98,102],[99,102],[80,100,102],[60,75,86,101,102],[65,102],[90,102,103],[102,104],[102,105],[60,65,72,74,83,90,101,102,104,106],[90,102,107],[75,102,109,169,170,215],[102,109],[60,90,102,107],[102,120],[102,120,132],[102,117,118,119,121,132],[102,123],[102,120,127,131,134],[102,122,134],[102,125,127,130,131,134],[102,125,127,128,130,131,134],[102,117,118,119,120,121,123,124,125,126,127,131,134],[102,116,117,118,119,120,121,123,124,125,126,127,128,130,131,132,133],[102,116,134],[102,127,128,129,131,134],[102,130,134],[102,120,126,131,134],[102,124,132],[102,116],[102,140,141,142,143,144,145,146,147,148,150,151,152,153,154,155,156,157,158,159,160,161,163,164,165,166,167],[101,102,146,150],[90,101,102,146],[98,101,102,143,146],[80,98,102,170],[102,109,141],[80,101,102,143,146,170],[60,72,90,101,102,138,139,142,145],[102,138,144],[60,93,101,102,109,142,146],[60,102,109],[60,102,109,162],[102,109,140,141],[102,146],[102,146,153,154],[102,144,146,154,155],[102,145],[102,138,141,146],[102,146,150,154,155],[102,150],[101,102,144,146,149],[102,138,143,146,153],[60,90,102],[102,109,162],[72,73,75,77,80,90,98,101,102,107,109,110,111,112,113,114,115,134],[102,112],[102,114],[102,135,137,170],[80,82,101,102,170,171,204,205],[75,80,102,135,137,169,170],[65,75,93,102,168,169,170],[102,136],[102,186,187,190,191,192],[102,187,202,204],[65,73,82,101,102,111,114,135,173,185,186,187,188,189,193,195,200,201],[102,186,187,188],[102,187],[73,82,102],[102,135,185,186],[102,194],[102,111,114,187,192,196,197,198,199],[61,73,80,102,170,203],[75,102,109,170,209],[75,102,109,170],[72,75,102,109,170,211,212],[68,75,80,90,101,102,170],[75,102,109,170,215],[135,170],[170,171,205],[75,80,135,137,169,170],[75,169,170],[136],[187],[187,202,204],[135,187],[187,188],[135,185,186],[111,114,187],[203]],"referencedMap":[[194,1],[175,2],[178,3],[179,4],[177,5],[176,1],[180,6],[185,7],[182,8],[184,9],[183,8],[181,1],[210,10],[218,11],[209,12],[213,13],[217,14],[173,15],[199,1],[215,16],[214,17],[172,1],[219,1],[56,18],[57,18],[59,19],[60,20],[61,21],[62,22],[63,23],[64,24],[65,25],[66,26],[67,27],[68,28],[69,28],[71,29],[70,30],[72,29],[73,31],[74,32],[58,33],[108,1],[75,34],[76,35],[77,36],[109,37],[78,38],[79,39],[80,40],[81,41],[82,42],[83,43],[84,44],[85,45],[86,46],[87,47],[88,47],[89,48],[90,49],[92,50],[91,51],[93,52],[94,53],[95,1],[96,54],[97,55],[98,56],[99,57],[100,58],[101,59],[102,60],[103,61],[104,62],[105,63],[106,64],[107,65],[220,1],[212,1],[211,1],[216,66],[196,1],[203,67],[198,68],[197,1],[174,1],[118,69],[117,70],[120,71],[124,72],[121,70],[126,73],[123,74],[128,75],[133,1],[129,76],[132,77],[134,78],[122,79],[130,80],[131,81],[127,82],[119,69],[125,83],[114,1],[116,84],[11,1],[12,1],[14,1],[13,1],[2,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[22,1],[3,1],[4,1],[26,1],[23,1],[24,1],[25,1],[27,1],[28,1],[29,1],[5,1],[30,1],[31,1],[32,1],[33,1],[6,1],[34,1],[35,1],[36,1],[37,1],[7,1],[38,1],[43,1],[44,1],[39,1],[40,1],[41,1],[42,1],[8,1],[48,1],[45,1],[46,1],[47,1],[49,1],[9,1],[50,1],[51,1],[52,1],[53,1],[54,1],[1,1],[10,1],[55,1],[168,85],[153,86],[160,87],[152,86],[144,88],[143,89],[166,67],[161,90],[164,91],[146,92],[145,93],[141,94],[140,95],[163,96],[142,97],[147,98],[148,1],[151,98],[138,1],[167,98],[155,99],[156,100],[158,101],[154,102],[157,103],[162,67],[149,104],[150,105],[159,106],[139,107],[165,108],[135,109],[110,1],[113,110],[112,1],[115,1],[111,111],[171,112],[206,113],[170,114],[169,115],[137,116],[207,116],[208,116],[136,1],[193,117],[190,1],[186,1],[205,118],[202,119],[189,120],[191,121],[188,122],[187,123],[195,124],[201,121],[200,125],[192,121],[204,126]],"exportedModulesMap":[[194,1],[175,2],[178,3],[179,4],[177,5],[176,1],[180,6],[185,7],[182,8],[184,9],[183,8],[181,1],[210,127],[218,11],[209,128],[213,129],[217,14],[173,15],[199,1],[215,16],[214,17],[172,1],[219,1],[56,18],[57,18],[59,19],[60,20],[61,21],[62,22],[63,23],[64,24],[65,25],[66,26],[67,27],[68,28],[69,28],[71,29],[70,30],[72,29],[73,31],[74,32],[58,33],[108,1],[75,130],[76,35],[77,36],[109,37],[78,38],[79,39],[80,40],[81,41],[82,42],[83,43],[84,44],[85,45],[86,46],[87,47],[88,47],[89,48],[90,49],[92,50],[91,51],[93,52],[94,53],[95,1],[96,54],[97,55],[98,56],[99,57],[100,58],[101,59],[102,60],[103,61],[104,62],[105,63],[106,64],[107,65],[220,1],[212,1],[211,1],[216,131],[196,1],[203,67],[198,68],[197,1],[174,1],[118,69],[117,70],[120,71],[124,72],[121,70],[126,73],[123,74],[128,75],[133,1],[129,76],[132,77],[134,78],[122,79],[130,80],[131,81],[127,82],[119,69],[125,83],[114,1],[116,84],[11,1],[12,1],[14,1],[13,1],[2,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[22,1],[3,1],[4,1],[26,1],[23,1],[24,1],[25,1],[27,1],[28,1],[29,1],[5,1],[30,1],[31,1],[32,1],[33,1],[6,1],[34,1],[35,1],[36,1],[37,1],[7,1],[38,1],[43,1],[44,1],[39,1],[40,1],[41,1],[42,1],[8,1],[48,1],[45,1],[46,1],[47,1],[49,1],[9,1],[50,1],[51,1],[52,1],[53,1],[54,1],[1,1],[10,1],[55,1],[168,85],[153,86],[160,87],[152,86],[144,88],[143,89],[166,67],[161,90],[164,91],[146,92],[145,93],[141,94],[140,95],[163,96],[142,97],[147,98],[148,1],[151,98],[138,1],[167,98],[155,99],[156,100],[158,101],[154,102],[157,103],[162,67],[149,104],[150,105],[159,106],[139,107],[165,108],[135,109],[110,1],[113,110],[112,1],[115,1],[111,111],[171,132],[206,133],[170,134],[169,135],[137,136],[207,136],[208,136],[193,137],[205,138],[202,139],[189,140],[191,137],[187,141],[201,137],[200,142],[192,137],[204,143]],"semanticDiagnosticsPerFile":[194,175,178,179,177,176,180,185,182,184,183,181,210,218,209,213,217,173,199,215,214,172,219,56,57,59,60,61,62,63,64,65,66,67,68,69,71,70,72,73,74,58,108,75,76,77,109,78,79,80,81,82,83,84,85,86,87,88,89,90,92,91,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,220,212,211,216,196,203,198,197,174,118,117,120,124,121,126,123,128,133,129,132,134,122,130,131,127,119,125,114,116,11,12,14,13,2,15,16,17,18,19,20,21,22,3,4,26,23,24,25,27,28,29,5,30,31,32,33,6,34,35,36,37,7,38,43,44,39,40,41,42,8,48,45,46,47,49,9,50,51,52,53,54,1,10,55,168,153,160,152,144,143,166,161,164,146,145,141,140,163,142,147,148,151,138,167,155,156,158,154,157,162,149,150,159,139,165,135,110,113,112,115,111,171,206,170,169,137,207,208,136,193,190,186,205,202,189,191,188,187,195,201,200,192,204],"latestChangedDtsFile":"./adapter/polyfill.d.ts"},"version":"4.8.3"}
1
+ {"program":{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/typescript/lib/lib.esnext.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/@types/node/ts4.8/assert.d.ts","../../../node_modules/@types/node/ts4.8/assert/strict.d.ts","../../../node_modules/@types/node/ts4.8/globals.d.ts","../../../node_modules/@types/node/ts4.8/async_hooks.d.ts","../../../node_modules/@types/node/ts4.8/buffer.d.ts","../../../node_modules/@types/node/ts4.8/child_process.d.ts","../../../node_modules/@types/node/ts4.8/cluster.d.ts","../../../node_modules/@types/node/ts4.8/console.d.ts","../../../node_modules/@types/node/ts4.8/constants.d.ts","../../../node_modules/@types/node/ts4.8/crypto.d.ts","../../../node_modules/@types/node/ts4.8/dgram.d.ts","../../../node_modules/@types/node/ts4.8/diagnostics_channel.d.ts","../../../node_modules/@types/node/ts4.8/dns.d.ts","../../../node_modules/@types/node/ts4.8/dns/promises.d.ts","../../../node_modules/@types/node/ts4.8/domain.d.ts","../../../node_modules/@types/node/ts4.8/dom-events.d.ts","../../../node_modules/@types/node/ts4.8/events.d.ts","../../../node_modules/@types/node/ts4.8/fs.d.ts","../../../node_modules/@types/node/ts4.8/fs/promises.d.ts","../../../node_modules/@types/node/ts4.8/http.d.ts","../../../node_modules/@types/node/ts4.8/http2.d.ts","../../../node_modules/@types/node/ts4.8/https.d.ts","../../../node_modules/@types/node/ts4.8/inspector.d.ts","../../../node_modules/@types/node/ts4.8/module.d.ts","../../../node_modules/@types/node/ts4.8/net.d.ts","../../../node_modules/@types/node/ts4.8/os.d.ts","../../../node_modules/@types/node/ts4.8/path.d.ts","../../../node_modules/@types/node/ts4.8/perf_hooks.d.ts","../../../node_modules/@types/node/ts4.8/process.d.ts","../../../node_modules/@types/node/ts4.8/punycode.d.ts","../../../node_modules/@types/node/ts4.8/querystring.d.ts","../../../node_modules/@types/node/ts4.8/readline.d.ts","../../../node_modules/@types/node/ts4.8/readline/promises.d.ts","../../../node_modules/@types/node/ts4.8/repl.d.ts","../../../node_modules/@types/node/ts4.8/stream.d.ts","../../../node_modules/@types/node/ts4.8/stream/promises.d.ts","../../../node_modules/@types/node/ts4.8/stream/consumers.d.ts","../../../node_modules/@types/node/ts4.8/stream/web.d.ts","../../../node_modules/@types/node/ts4.8/string_decoder.d.ts","../../../node_modules/@types/node/ts4.8/test.d.ts","../../../node_modules/@types/node/ts4.8/timers.d.ts","../../../node_modules/@types/node/ts4.8/timers/promises.d.ts","../../../node_modules/@types/node/ts4.8/tls.d.ts","../../../node_modules/@types/node/ts4.8/trace_events.d.ts","../../../node_modules/@types/node/ts4.8/tty.d.ts","../../../node_modules/@types/node/ts4.8/url.d.ts","../../../node_modules/@types/node/ts4.8/util.d.ts","../../../node_modules/@types/node/ts4.8/v8.d.ts","../../../node_modules/@types/node/ts4.8/vm.d.ts","../../../node_modules/@types/node/ts4.8/wasi.d.ts","../../../node_modules/@types/node/ts4.8/worker_threads.d.ts","../../../node_modules/@types/node/ts4.8/zlib.d.ts","../../../node_modules/@types/node/ts4.8/globals.global.d.ts","../../../node_modules/@types/node/ts4.8/index.d.ts","../../../node_modules/vite/node_modules/esbuild/lib/main.d.ts","../../../node_modules/vite/types/metadata.d.ts","../../../node_modules/vite/types/hmrpayload.d.ts","../../../node_modules/vite/types/customevent.d.ts","../../../node_modules/rollup/dist/rollup.d.ts","../../../node_modules/vite/types/importglob.d.ts","../../../node_modules/source-map-js/source-map.d.ts","../../../node_modules/postcss/lib/comment.d.ts","../../../node_modules/postcss/lib/at-rule.d.ts","../../../node_modules/postcss/lib/rule.d.ts","../../../node_modules/postcss/lib/container.d.ts","../../../node_modules/postcss/lib/declaration.d.ts","../../../node_modules/postcss/lib/previous-map.d.ts","../../../node_modules/postcss/lib/input.d.ts","../../../node_modules/postcss/lib/css-syntax-error.d.ts","../../../node_modules/postcss/lib/warning.d.ts","../../../node_modules/postcss/lib/document.d.ts","../../../node_modules/postcss/lib/root.d.ts","../../../node_modules/postcss/lib/lazy-result.d.ts","../../../node_modules/postcss/lib/no-work-result.d.ts","../../../node_modules/postcss/lib/processor.d.ts","../../../node_modules/postcss/lib/result.d.ts","../../../node_modules/postcss/lib/node.d.ts","../../../node_modules/postcss/lib/list.d.ts","../../../node_modules/postcss/lib/postcss.d.ts","../../../node_modules/vite/dist/node/index.d.ts","../src/runtime/types.ts","../src/runtime/index.ts","../../../node_modules/undici/types/header.d.ts","../../../node_modules/undici/types/readable.d.ts","../../../node_modules/undici/types/file.d.ts","../../../node_modules/undici/types/fetch.d.ts","../../../node_modules/undici/types/formdata.d.ts","../../../node_modules/undici/types/connector.d.ts","../../../node_modules/undici/types/client.d.ts","../../../node_modules/undici/types/errors.d.ts","../../../node_modules/undici/types/dispatcher.d.ts","../../../node_modules/undici/types/global-dispatcher.d.ts","../../../node_modules/undici/types/global-origin.d.ts","../../../node_modules/undici/types/pool-stats.d.ts","../../../node_modules/undici/types/pool.d.ts","../../../node_modules/undici/types/handlers.d.ts","../../../node_modules/undici/types/balanced-pool.d.ts","../../../node_modules/undici/types/agent.d.ts","../../../node_modules/undici/types/mock-interceptor.d.ts","../../../node_modules/undici/types/mock-agent.d.ts","../../../node_modules/undici/types/mock-client.d.ts","../../../node_modules/undici/types/mock-pool.d.ts","../../../node_modules/undici/types/mock-errors.d.ts","../../../node_modules/undici/types/proxy-agent.d.ts","../../../node_modules/undici/types/api.d.ts","../../../node_modules/undici/types/cookies.d.ts","../../../node_modules/undici/types/patch.d.ts","../../../node_modules/undici/types/filereader.d.ts","../../../node_modules/undici/types/diagnostics-channel.d.ts","../../../node_modules/undici/types/websocket.d.ts","../../../node_modules/undici/types/content-type.d.ts","../../../node_modules/undici/types/interceptors.d.ts","../../../node_modules/undici/index.d.ts","../src/adapter/polyfill.ts","../src/adapter/middleware.ts","../src/adapter/dev-server.ts","../../../node_modules/@types/minimatch/index.d.ts","../../../node_modules/@types/glob/index.d.ts","../../../node_modules/magic-string/index.d.ts","../../../node_modules/@marko/babel-utils/index.d.ts","../../../node_modules/@marko/compiler/dist/types.d.ts","../../../node_modules/@marko/compiler/dist/traverse.d.ts","../../../node_modules/@marko/compiler/babel-types.d.ts","../../../node_modules/@marko/compiler/config.d.ts","../../../node_modules/@marko/compiler/index.d.ts","../../../node_modules/@marko/vite/dist/store/types.d.ts","../../../node_modules/@marko/vite/dist/store/file-store.d.ts","../../../node_modules/@marko/vite/dist/store/memory-store.d.ts","../../../node_modules/@marko/vite/dist/store/index.d.ts","../../../node_modules/@marko/vite/dist/index.d.ts","../src/vite/constants.ts","../src/vite/types.ts","../src/vite/routes/walk.ts","../src/vite/routes/builder.ts","../src/vite/codegen/writer.ts","../src/vite/routes/routetrie.ts","../src/vite/utils/route.ts","../src/vite/codegen/index.ts","../../../node_modules/@babel/types/lib/index.d.ts","../src/vite/utils/ast.ts","../../../node_modules/cli-table3/index.d.ts","../../../node_modules/kleur/index.d.ts","../../../node_modules/gzip-size/index.d.ts","../../../node_modules/@types/human-format/index.d.ts","../src/vite/utils/log.ts","../src/vite/utils/config.ts","../src/vite/plugin.ts","../../../node_modules/dotenv/lib/main.d.ts","../src/vite/utils/server.ts","../src/vite/index.ts","../src/adapter/index.ts","../src/runtime/internal.ts","../src/runtime/router.ts","../../../node_modules/@types/connect/index.d.ts","../../../node_modules/@types/body-parser/index.d.ts","../../../node_modules/@types/range-parser/index.d.ts","../../../node_modules/@types/qs/index.d.ts","../../../node_modules/@types/express-serve-static-core/index.d.ts","../../../node_modules/@types/mime/mime.d.ts","../../../node_modules/@types/mime/index.d.ts","../../../node_modules/@types/serve-static/index.d.ts","../../../node_modules/@types/express/index.d.ts","../../../node_modules/@types/compression/index.d.ts","../../../node_modules/@types/mocha/index.d.ts","../../../node_modules/@types/parse-json/index.d.ts"],"fileInfos":[{"version":"f20c05dbfe50a208301d2a1da37b9931bce0466eb5a1f4fe240971b4ecc82b67","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9","746d62152361558ea6d6115cf0da4dd10ede041d14882ede3568bce5dc4b4f1f","d11a03592451da2d1065e09e61f4e2a9bf68f780f4f6623c18b57816a9679d17","aea179452def8a6152f98f63b191b84e7cbd69b0e248c91e61fb2e52328abe8c",{"version":"9b087de7268e4efc5f215347a62656663933d63c0b1d7b624913240367b999ea","affectsGlobalScope":true},{"version":"3260e3386d9535b804205bdddb5618a9a27735bd22927f48ad54363abcd23d45","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"55f400eec64d17e888e278f4def2f254b41b89515d3b88ad75d5e05f019daddd","affectsGlobalScope":true},{"version":"181f1784c6c10b751631b24ce60c7f78b20665db4550b335be179217bacc0d5f","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"775d9c9fd150d5de79e0450f35bc8b8f94ae64e3eb5da12725ff2a649dccc777","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"6c55633c733c8378db65ac3da7a767c3cf2cf3057f0565a9124a16a3a2019e87","affectsGlobalScope":true},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true},{"version":"34c839eaaa6d78c8674ae2c37af2236dee6831b13db7b4ef4df3ec889a04d4f2","affectsGlobalScope":true},{"version":"34478567f8a80171f88f2f30808beb7da15eac0538ae91282dd33dce928d98ed","affectsGlobalScope":true},{"version":"ab7d58e6161a550ff92e5aff755dc37fe896245348332cd5f1e1203479fe0ed1","affectsGlobalScope":true},{"version":"6bda95ea27a59a276e46043b7065b55bd4b316c25e70e29b572958fa77565d43","affectsGlobalScope":true},{"version":"aedb8de1abb2ff1095c153854a6df7deae4a5709c37297f9d6e9948b6806fa66","affectsGlobalScope":true},{"version":"a4da0551fd39b90ca7ce5f68fb55d4dc0c1396d589b612e1902f68ee090aaada","affectsGlobalScope":true},{"version":"11ffe3c281f375fff9ffdde8bbec7669b4dd671905509079f866f2354a788064","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"7e771891adaa85b690266bc37bd6eb43bc57eecc4b54693ead36467e7369952a","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"02873d070f9cb79f50833fbf4a9a27ac578a2edf8ddb8421eba1b37faba83bfb","affectsGlobalScope":true},"21a167fec8f933752fb8157f06d28fab6817af3ad9b0bdb1908a10762391eab9",{"version":"c0db280fa6b09d7b8d6720a19a47f485956a41ee0e6914f1b704033eb69c6058","affectsGlobalScope":true},"374ca798f244e464346f14301dc2a8b4b111af1a83b49fffef5906c338a1f922","5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713",{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","dab86d9604fe40854ef3c0a6f9e8948873dc3509213418e5e457f410fd11200f","bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","489532ff54b714f0e0939947a1c560e516d3ae93d51d639ab02e907a0e950114","f30bb836526d930a74593f7b0f5c1c46d10856415a8f69e5e2fc3db80371e362","14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea",{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true},{"version":"816ad2e607a96de5bcac7d437f843f5afd8957f1fa5eefa6bba8e4ed7ca8fd84","affectsGlobalScope":true},"cec36af22f514322f870e81d30675c78df82ae8bf4863f5fd4e4424c040c678d","d903fafe96674bc0b2ac38a5be4a8fc07b14c2548d1cdb165a80ea24c44c0c54","5eec82ac21f84d83586c59a16b9b8502d34505d1393393556682fe7e7fde9ef2","04eb6578a588d6a46f50299b55f30e3a04ef27d0c5a46c57d8fcc211cd530faa","8d3c583a07e0c37e876908c2d5da575019f689df8d9fa4c081d99119d53dba22","2c828a5405191d006115ab34e191b8474bc6c86ffdc401d1a9864b1b6e088a58",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"d4ac44f01d42f541631c5fc88d0ed8efac29a3a3ad9a745d9fd58f8b61ed132e","7c013aa892414a7fdcfd861ae524a668eaa3ede8c7c0acafaf611948122c8d93","b0973c3cbcdc59b37bf477731d468696ecaf442593ec51bab497a613a580fe30",{"version":"4989e92ba5b69b182d2caaea6295af52b7dc73a4f7a2e336a676722884e7139d","affectsGlobalScope":true},{"version":"b3624aed92dab6da8484280d3cb3e2f4130ec3f4ef3f8201c95144ae9e898bb6","affectsGlobalScope":true},"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","210d54cd652ec0fec8c8916e4af59bb341065576ecda039842f9ffb2e908507c","36b03690b628eab08703d63f04eaa89c5df202e5f1edf3989f13ad389cd2c091","0effadd232a20498b11308058e334d3339cc5bf8c4c858393e38d9d4c0013dcf","25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","3163f47436da41706c6e2b3c1511f3b7cce9f9f3905b2f3e01246c48b4ba7d14","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","69ee23dd0d215b09907ad30d23f88b7790c93329d1faf31d7835552a10cf7cbf","44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","223c37f62ce09a3d99e77498acdee7b2705a4ae14552fbdb4093600cd9164f3f",{"version":"970a90f76d4d219ad60819d61f5994514087ba94c985647a3474a5a3d12714ed","affectsGlobalScope":true},"e10177274a35a9d07c825615340b2fcde2f610f53f3fb40269fd196b4288dda6","4c8525f256873c7ba3135338c647eaf0ca7115a1a2805ae2d0056629461186ce","3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2",{"version":"f0900cd5d00fe1263ff41201fb8073dbeb984397e4af3b8002a5c207a30bdc33","affectsGlobalScope":true},{"version":"4c50342e1b65d3bee2ed4ab18f84842d5724ad11083bd666d8705dc7a6079d80","affectsGlobalScope":true},"06d7c42d256f0ce6afe1b2b6cfbc97ab391f29dadb00dd0ae8e8f23f5bc916c3","ec4bd1b200670fb567920db572d6701ed42a9641d09c4ff6869768c8f81b404c","e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa",{"version":"da26af7362f53d122283bc69fed862b9a9fe27e01bc6a69d1d682e0e5a4df3e6","affectsGlobalScope":true},"8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"652ee9c5103e89102d87bc20d167a02a0e3e5e53665674466c8cfea8a9e418c7","f05dce044af53a0b39d9540b53b0841e11c642908959bb865080288c1e24ebeb","8f07f2b6514744ac96e51d7cb8518c0f4de319471237ea10cf688b8d0e9d0225","bcb6ea18f23dae2c48459d7b86d3adccd6898f824fcbf9da08b935f559896580","0aa7220845f5f3902fe043f646f9d9218bd7dd6c4046e8471580866ea6b03aa2","8bff1a31f450aeb1dc454de28fa419ea8c15831bbc8469832ea6f609b9999ed4","739c2c46edc112421fc023c24b4898b1f413f792bb6a02b40ba182c648e56c2f","858d0d831826c6eb563df02f7db71c90e26deadd0938652096bea3cc14899700","d1c89db652113258e4ba4bbdf5cc7a2a3a600403d4d864a2087b95186253cd5b","11a90d2cb2eaf7fdf931a63b58279e8161f1477a1bd1e914ae026c1bbf9afed3","af18e30f3ba06e9870b61dfa4a109215caabdaa337590c51b4a044a9f338ce96","ace603f7b60599f2dcdbd71c07137b60a747dd33be540f4a294b890f9e0b89dc","7658fbdd425c656fb1849b44932ae7431e8c3198d22c65ce1490deb582743b52","7786c75c1b46e93b33c63dccf689143a5f47ff451a6b3bd9b10e4801cdeadcc2","dbef2851e33a4c2fd2f3164fec70e45df647eb0e87f250de784500a3037e2c37","31491a01ed7466e0b3b0ef8407f2524683055eceb955b1d5ccf7096129468b39","f4b12f7dde4fc0e386648318481bdcfe861b566be246bebf0e8a11ebd909adf9","e8966f7c424780bb0b9d411ebe13eda8555ca15aa675603316c2952bc027b0e3","df0e5f3c4a518111d160cf3bebc9a3ac7d39c6e3bfb7a21d43c304896c3015e2","df4e2f161f74870708c2cc5e1036a6405b878496408fda1ee50d5b10e50d6601","bf791da347fb1c0ffc1e2fcd35867e64bb8355270ae26278198c521bdcf94569","e0e0e3c068e145fbb322120979299ff130ffdd39f0dcd0d5aeaa9f3f8a0d01d9","fde91356172e35b9ea68bbdf33721f7c80307a4ce65b82105eac800e9e744995","9bd5e5a4a1e66b35efe3c48ddac1116537ef86e041717f3a9b9f1e060c74efa6","d7e4a5f4ccfb749c3033fafc233073b4d1dcca0249785186c589602a81f9d86f","68161b6f3004fc10f8bb47a4986cef13c3b0728fb1ca3e1dc7316227d09b2c8d","78c7b6467e0fa14eb0b465af39d6e6ac90c13e0607695a1367c71d33333bb7d5",{"version":"8a8ae6b256d36b0e9e601171b84e0254e2053413d1fc7cdc6271b8b8f98fc3e1","signature":"c3fed407be7cf0dfbec2cd07eac3ef8ec5e357289aae206a1859ca418010fe3c"},{"version":"70aff84abb09620960fc1363525ae59efac888534453348ba621a754ede154fe","signature":"690529b3de5d4033590c338bb7161e61efff5b8a8968504952ec4e4834253fec","affectsGlobalScope":true},"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","0589c85b507c2b90458bf7f87c2aebb0879a251fa119f2464350113d93113a32","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","54cb85a47d760da1c13c00add10d26b5118280d44d58e6908d8e89abbd9d7725","3e4825171442666d31c845aeb47fcd34b62e14041bb353ae2b874285d78482aa","db6c2d64e5c642b4e08a136a15ef7155452fc7072513ac5b18a03b8e8107fe45","d9bf99a360cb3dfdc87b7e4988d63115cb30bf180f2bcfd56f425d2aee49925f","2e98c8d346012b9ac4f372d5a0ba7930ec413e45822d52a833dcde4a1cca91eb","85b5d54fc8586dc83c99934f02df83954282725ffcbd6631d4aa0ec81afb8671","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","db3435f3525cd785bf21ec6769bf8da7e8a776be1a99e2e7efb5f244a2ef5fee","c3b170c45fc031db31f782e612adf7314b167e60439d304b49e704010e7bafe5","8b23b832eb8547e6ef837f2c86a2354bcc4a52f5a51b6f0c82da48dd71961bf1","80ad053918e96087d9da8d092ff9f90520c9fc199c8bfd9340266dd8f38f364e","3a84b7cb891141824bd00ef8a50b6a44596aded4075da937f180c90e362fe5f6","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","cf01820a6625d372b406150fc8bbaaf82326dad57088a09d546df4619fcf4d2e","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","9f0a92164925aa37d4a5d9dd3e0134cff8177208dba55fd2310cd74beea40ee2","f436b69387a990543d96787d1671b601a1ca624c420edc53560cb3d742f132fb","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","d32275be3546f252e3ad33976caf8c5e842c09cb87d468cb40d5f4cf092d1acc","e4da0dc0982bc3ecaed637009f74a847b8d3fe06cbcf9f5e83b8ce8b0ed5d393",{"version":"e7524c4e71eb352d4798b4d83b761a5cd703b8722d3c8de29fb2f5fd00fef7ae","signature":"44a848e913ff15fdc276433caaf5ca887c3ad0e730c488c700383912cfdc5b01"},{"version":"c18667d1cf6133a10ad8277ea19c78a413e2f9439b854c827e0fced9d4ccd296","signature":"0fa27571d00fcb0249f6ded53e889bbcc44f8c2dfc79dcef1b53a24499c5fbca"},{"version":"b224c6c42c85eed9ee2b8ba91b9aea639931444fb8257078929b605229effa23","signature":"5e533490911188e94cde9ecaef198400fd71d03d253fd05d4bf516c67eeaa175"},"963d59066dd6742da1918a6213a209bcc205b8ee53b1876ee2b4e6d80f97c85e","a55ca8b5f8c6a8535bb26fac1e10132a5338234ca3d5b9ed739fbc8ef41c8075","7d2e8108a8d5104af657b553719cebbdc853c9b4ef6fcd61eed61cf5e08c887d","7b2c69215c38b985deeb5383888c97649fa614c85e0ffc3f59a7ee29c79f40ad","24568dcf744ed1a9700063a95362d507494180a671b4fbad1a72acf42e33ca42","737553ba98c20db05b610925e8106ba095707bb3af134229460c04fece8222de","27560169815f4eb65fd27e58a2ab5f1ee204c41c15484774de8cb9f8e0a4b578","5380aeeedece7663d123c548a2baf9209577fa270c6dd34f801e3401c633e463","d9e74b6fa3a9c501f4211daf19c300ff782e827dd4934a1188a37c00c7a1335c","93c8b225a9da82b35a6ccc81d9b9110ecd7f7264e711a505fde11de7ab937451","f45d5b8919f317b3decca1afb1f4357a9a83f20e774e0b7a53bdf02fc749db99","db848adfda3f25a5726066d4b84630cfeaee605d13171b19cf54d157cee612d6","0edf585c43954817bc6cae2411f6af9810af08ca39044ccd40122456235f314e","d6bb90af219c3713408075b9779d0894e93227a2777924b09f6bf930804f1428",{"version":"6a047d3fc0fbe3607188e07d04f588e22846dbd72b4e0b49cbfbd3cd2e27f414","signature":"cd77a3729d879c6986588bb950807674ed12a97bd2d2e3592b835f725f3d59bd"},{"version":"2c7fd83aa7b681bbce21b81ba55ecb2d658f41927426a1e4fe08a9447b7b878c","signature":"98b790989eb0e3b5478f9a359bfd68a412465ee5e3d9f827a27282ffb29dcf7c"},{"version":"c24c426a7df76ba13632f17cafb810387a6592e90899976851b95c054dc18ca4","signature":"48ebee34ad5fad861968dd42d94730c752df4bb4a89409da5d5a12fc2dd9617e"},{"version":"2a7833419b55a3d2c4398c02b7cbd01ab933c6266ad50d6c9cf22cebf572cdaa","signature":"7c818fe456a538663b89785111756cf9d7ce6fefda430b572a8d22a48dd31739"},{"version":"803d29d02ba47713168639b7d6d438ba2bafc836035d9d1e7abfac5d608229ec","signature":"46238c172356216ae0fdc56a47ccf7c07506062eda8276590d52fb8585fe7d08"},{"version":"df183dacdf7ac14916e06b8361b7ddc768b1447ce59e8d6d6b4293d0a6cd4aae","signature":"b3e32fb86dd71104f4fea5efe4839fcec9bb89659bdf0a4aa0ccd68fde2ca4e9"},{"version":"3e7025fa170435e50f393c7fe75bfdc99fe874b44fe50de148ec5242f75941fe","signature":"44428f74bf9a1b9df881b0e2e72b4036c6a80cfe84ab2a75bd8501efa4f1c9d9"},{"version":"522effd9831560a0a33423aafaa8e9a344c3bc49450ea3fe1c47a83526557255","signature":"06f4f6c7ee82dfaf3679a0107c00106406c1a688d0e94b49dbf1e19557dc96ed"},"c561efdf5ba0b62619745d4761fe2d9756f23db972e039367d15922fed67fd2f",{"version":"8edb7e8f82f7eefe4212848d6b6bff2e2fb0319cb9c1822d6e45e9e5d6e87d45","signature":"1f11365b8a4c385627c3df832da56fe501c5502799627cc998d0953bab447559"},"e6d2c107b358421399671d5afc04f9a0993833121c74bcbd3648ac3a65770936","6ab263df6465e2ed8f1d02922bae18bb5b407020767de021449a4c509859b22e","272291278c861cd68a097674773fe90b2d7a66f1da4e542d3aa814e8a06ee713","98380aa684fdfceb8b7107e302c62c207dbc1b60a249f6ce714277f103ba642b",{"version":"3967ec35d9c2e8e3b1ffa119b5422bdd123f21f0a4fc48914847a5ef6683e752","signature":"5a9f0842480ec222faf513217d0cb2fdf798e48831e56c62d3a575fed6c9c96a"},{"version":"ad9a77ed9ebf923071e1ded384388c0d2520936c246f9cfd040b5cd7d8c1c809","signature":"04d74cd36a20354e300041ad60390aae9f2fe37162cd2df8080b738e14ebd747"},{"version":"3b426aca20666a41ed6a27122a199481b92633f35ef9aa2368d5a728449c607a","signature":"ec0813eb2a5baaff37494fe7b3ac7f1076660430ff12ea74d6ce75dd503245a6"},"cfdd927a5eae7a7e623b9745722ef3f2b7a2997fddc5d32b7e3dcaeeb15ff4a3",{"version":"b77a765400e852a541ad85e3f7decaca85e8b0ddca360c6c2368278c54b8ff3d","signature":"349110fbb824c1719e8de0c7627c91bb4a875e75b7085f189888011e1e00dd23"},{"version":"ec70602ae60013833d26e459067d079a705a5658cfbe788da88700e46ed8d379","signature":"91afd8a2b4230e2830a040d4f48b2bc9ecb92db6244656a45932bf05670ca8f0"},{"version":"1fba983b85706217b708f26cf6064373782342ad9a9f842456242a3103e3aceb","signature":"61b167e597246e8b0616f6ae2e4abe2e3d3fb6530084bccc1d27be10966e1105"},{"version":"cbac0f09c7637ef5b43b20674f9a27bd1bc7157d5b67d2fb0aaab3ba61cc0514","signature":"0d755deaa110c081388b78d5ecd5b49908853d7d3f251d7af81821b1cc95a757"},{"version":"1cda2a4f2807f673c15d7818791d82b15d8ebfb3a5ade6f9aaa79f2020717b21","signature":"acabf8e4e3b870df53bd1e238c2dbdd6f5cc8db7dc6924fb9a4cbdc6a2180dd3"},"6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","afc559c1b93df37c25aef6b3dfa2d64325b0e112e887ee18bf7e6f4ec383fc90","16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",{"version":"ae3fe461989bbd951344efc1f1fe932360ce7392e6126bdb225a82a1bbaf15ee","affectsGlobalScope":true},"5b9ecf7da4d71cf3832dbb8336150fa924631811f488ad4690c2dfec2b4fb1d7","951c85f75aac041dddbedfedf565886a7b494e29ec1532e2a9b4a6180560b50e","f47887b61c6cf2f48746980390d6cb5b8013518951d912cfb37fe748071942be","15c88bfd1b8dc7231ff828ae8df5d955bae5ebca4cf2bcb417af5821e52299ae",{"version":"717e5f864ab6e755a23b66a7935920d9a73ec7d4728b84ddf85c1d334a9414ae","affectsGlobalScope":true},{"version":"3f6d6465811321abc30a1e5f667feed63e5b3917b3d6c8d6645daf96c75f97ba","affectsGlobalScope":true},"2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b"],"options":{"allowSyntheticDefaultImports":true,"allowUnreachableCode":false,"allowUnusedLabels":false,"composite":true,"emitDeclarationOnly":true,"esModuleInterop":true,"importsNotUsedAsValues":2,"module":99,"noFallthroughCasesInSwitch":true,"noImplicitOverride":true,"noImplicitReturns":false,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","rootDir":"../src","sourceMap":false,"strict":true,"stripInternal":true,"target":99,"tsBuildInfoFile":"./.tsbuildinfo"},"fileIdsList":[[102],[102,180],[102,176,177],[73,102],[102,176,180],[102,174,175,178,179],[102,135,180,184],[102,181],[102,181,182,183],[75,102,109,169,170,209],[102,217],[75,102,109,169,170],[72,75,102,109,169,170,211,212],[102,210,212,213,216],[72,73,102,109,172],[102,214],[102,215],[56,102],[59,102],[60,65,93,102],[61,72,73,80,90,101,102],[61,62,72,80,102],[63,102],[64,65,73,81,102],[65,90,98,102],[66,68,72,80,102],[67,102],[68,69,102],[72,102],[70,72,102],[72,73,74,90,101,102],[72,73,74,87,90,93,102],[102,106],[68,75,80,90,101,102,169,170],[72,73,75,76,80,90,98,101,102],[75,77,90,98,101,102],[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,106,107,108],[72,78,102],[79,101,102],[68,72,80,90,102,170],[81,102],[82,102],[59,83,102],[84,100,102,106],[85,102],[86,102],[72,87,88,102],[87,89,102,104],[60,72,90,91,92,93,102],[60,90,92,102],[90,91,102],[93,102],[94,102],[72,96,97,102],[96,97,102],[65,80,90,98,102],[99,102],[80,100,102],[60,75,86,101,102],[65,102],[90,102,103],[102,104],[102,105],[60,65,72,74,83,90,101,102,104,106],[90,102,107],[75,102,109,169,170,215],[102,109],[60,90,102,107],[102,120],[102,120,132],[102,117,118,119,121,132],[102,123],[102,120,127,131,134],[102,122,134],[102,125,127,130,131,134],[102,125,127,128,130,131,134],[102,117,118,119,120,121,123,124,125,126,127,131,134],[102,116,117,118,119,120,121,123,124,125,126,127,128,130,131,132,133],[102,116,134],[102,127,128,129,131,134],[102,130,134],[102,120,126,131,134],[102,124,132],[102,116],[102,140,141,142,143,144,145,146,147,148,150,151,152,153,154,155,156,157,158,159,160,161,163,164,165,166,167],[101,102,146,150],[90,101,102,146],[98,101,102,143,146],[80,98,102,170],[102,109,141],[80,101,102,143,146,170],[60,72,90,101,102,138,139,142,145],[102,138,144],[60,93,101,102,109,142,146],[60,102,109],[60,102,109,162],[102,109,140,141],[102,146],[102,146,153,154],[102,144,146,154,155],[102,145],[102,138,141,146],[102,146,150,154,155],[102,150],[101,102,144,146,149],[102,138,143,146,153],[60,90,102],[102,109,162],[72,73,75,77,80,90,98,101,102,107,109,110,111,112,113,114,115,134],[102,112],[102,114],[102,135,137,170],[80,82,101,102,170,171,204,205],[75,80,102,135,137,169,170],[65,75,93,102,168,169,170],[102,136],[102,186,187,190,191,192],[102,187,202,204],[65,73,82,101,102,111,114,135,173,185,186,187,188,189,193,195,200,201],[102,186,187,188],[102,187],[73,82,102],[102,135,185,186],[102,194],[102,111,114,187,192,196,197,198,199],[61,73,80,102,170,203],[75,102,109,170,209],[75,102,109,170],[72,75,102,109,170,211,212],[68,75,80,90,101,102,170],[75,102,109,170,215],[135,170],[170,171,205],[75,80,135,137,169,170],[75,169,170],[136],[187],[187,202,204],[135,187],[187,188],[135,185,186],[111,114,187],[203]],"referencedMap":[[194,1],[175,2],[178,3],[179,4],[177,5],[176,1],[180,6],[185,7],[182,8],[184,9],[183,8],[181,1],[210,10],[218,11],[209,12],[213,13],[217,14],[173,15],[199,1],[215,16],[214,17],[172,1],[219,1],[56,18],[57,18],[59,19],[60,20],[61,21],[62,22],[63,23],[64,24],[65,25],[66,26],[67,27],[68,28],[69,28],[71,29],[70,30],[72,29],[73,31],[74,32],[58,33],[108,1],[75,34],[76,35],[77,36],[109,37],[78,38],[79,39],[80,40],[81,41],[82,42],[83,43],[84,44],[85,45],[86,46],[87,47],[88,47],[89,48],[90,49],[92,50],[91,51],[93,52],[94,53],[95,1],[96,54],[97,55],[98,56],[99,57],[100,58],[101,59],[102,60],[103,61],[104,62],[105,63],[106,64],[107,65],[220,1],[212,1],[211,1],[216,66],[196,1],[203,67],[198,68],[197,1],[174,1],[118,69],[117,70],[120,71],[124,72],[121,70],[126,73],[123,74],[128,75],[133,1],[129,76],[132,77],[134,78],[122,79],[130,80],[131,81],[127,82],[119,69],[125,83],[114,1],[116,84],[11,1],[12,1],[14,1],[13,1],[2,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[22,1],[3,1],[4,1],[26,1],[23,1],[24,1],[25,1],[27,1],[28,1],[29,1],[5,1],[30,1],[31,1],[32,1],[33,1],[6,1],[34,1],[35,1],[36,1],[37,1],[7,1],[38,1],[43,1],[44,1],[39,1],[40,1],[41,1],[42,1],[8,1],[48,1],[45,1],[46,1],[47,1],[49,1],[9,1],[50,1],[51,1],[52,1],[53,1],[54,1],[1,1],[10,1],[55,1],[168,85],[153,86],[160,87],[152,86],[144,88],[143,89],[166,67],[161,90],[164,91],[146,92],[145,93],[141,94],[140,95],[163,96],[142,97],[147,98],[148,1],[151,98],[138,1],[167,98],[155,99],[156,100],[158,101],[154,102],[157,103],[162,67],[149,104],[150,105],[159,106],[139,107],[165,108],[135,109],[110,1],[113,110],[112,1],[115,1],[111,111],[171,112],[206,113],[170,114],[169,115],[137,116],[207,116],[208,116],[136,1],[193,117],[190,1],[186,1],[205,118],[202,119],[189,120],[191,121],[188,122],[187,123],[195,124],[201,121],[200,125],[192,121],[204,126]],"exportedModulesMap":[[194,1],[175,2],[178,3],[179,4],[177,5],[176,1],[180,6],[185,7],[182,8],[184,9],[183,8],[181,1],[210,127],[218,11],[209,128],[213,129],[217,14],[173,15],[199,1],[215,16],[214,17],[172,1],[219,1],[56,18],[57,18],[59,19],[60,20],[61,21],[62,22],[63,23],[64,24],[65,25],[66,26],[67,27],[68,28],[69,28],[71,29],[70,30],[72,29],[73,31],[74,32],[58,33],[108,1],[75,130],[76,35],[77,36],[109,37],[78,38],[79,39],[80,40],[81,41],[82,42],[83,43],[84,44],[85,45],[86,46],[87,47],[88,47],[89,48],[90,49],[92,50],[91,51],[93,52],[94,53],[95,1],[96,54],[97,55],[98,56],[99,57],[100,58],[101,59],[102,60],[103,61],[104,62],[105,63],[106,64],[107,65],[220,1],[212,1],[211,1],[216,131],[196,1],[203,67],[198,68],[197,1],[174,1],[118,69],[117,70],[120,71],[124,72],[121,70],[126,73],[123,74],[128,75],[133,1],[129,76],[132,77],[134,78],[122,79],[130,80],[131,81],[127,82],[119,69],[125,83],[114,1],[116,84],[11,1],[12,1],[14,1],[13,1],[2,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[22,1],[3,1],[4,1],[26,1],[23,1],[24,1],[25,1],[27,1],[28,1],[29,1],[5,1],[30,1],[31,1],[32,1],[33,1],[6,1],[34,1],[35,1],[36,1],[37,1],[7,1],[38,1],[43,1],[44,1],[39,1],[40,1],[41,1],[42,1],[8,1],[48,1],[45,1],[46,1],[47,1],[49,1],[9,1],[50,1],[51,1],[52,1],[53,1],[54,1],[1,1],[10,1],[55,1],[168,85],[153,86],[160,87],[152,86],[144,88],[143,89],[166,67],[161,90],[164,91],[146,92],[145,93],[141,94],[140,95],[163,96],[142,97],[147,98],[148,1],[151,98],[138,1],[167,98],[155,99],[156,100],[158,101],[154,102],[157,103],[162,67],[149,104],[150,105],[159,106],[139,107],[165,108],[135,109],[110,1],[113,110],[112,1],[115,1],[111,111],[171,132],[206,133],[170,134],[169,135],[137,136],[207,136],[208,136],[193,137],[205,138],[202,139],[189,140],[191,137],[187,141],[201,137],[200,142],[192,137],[204,143]],"semanticDiagnosticsPerFile":[194,175,178,179,177,176,180,185,182,184,183,181,210,218,209,213,217,173,199,215,214,172,219,56,57,59,60,61,62,63,64,65,66,67,68,69,71,70,72,73,74,58,108,75,76,77,109,78,79,80,81,82,83,84,85,86,87,88,89,90,92,91,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,220,212,211,216,196,203,198,197,174,118,117,120,124,121,126,123,128,133,129,132,134,122,130,131,127,119,125,114,116,11,12,14,13,2,15,16,17,18,19,20,21,22,3,4,26,23,24,25,27,28,29,5,30,31,32,33,6,34,35,36,37,7,38,43,44,39,40,41,42,8,48,45,46,47,49,9,50,51,52,53,54,1,10,55,168,153,160,152,144,143,166,161,164,146,145,141,140,163,142,147,148,151,138,167,155,156,158,154,157,162,149,150,159,139,165,135,110,113,112,115,111,171,206,170,169,137,207,208,136,193,190,186,205,202,189,191,188,187,195,201,200,192,204],"latestChangedDtsFile":"./adapter/polyfill.d.ts"},"version":"4.8.3"}
@@ -62,11 +62,7 @@ async function createDevServer(configFile) {
62
62
  const devServer = await (0, import_vite.createServer)({
63
63
  configFile,
64
64
  appType: "custom",
65
- server: { middlewareMode: true },
66
- resolve: {
67
- dedupe: ["marko"],
68
- conditions: ["worker"]
69
- }
65
+ server: { middlewareMode: true }
70
66
  });
71
67
  const { createMiddleware } = await devServer.ssrLoadModule(
72
68
  "@marko/run/adapter/middleware"
@@ -30,11 +30,7 @@ async function createDevServer(configFile) {
30
30
  const devServer = await createServer({
31
31
  configFile,
32
32
  appType: "custom",
33
- server: { middlewareMode: true },
34
- resolve: {
35
- dedupe: ["marko"],
36
- conditions: ["worker"]
37
- }
33
+ server: { middlewareMode: true }
38
34
  });
39
35
  const { createMiddleware } = await devServer.ssrLoadModule(
40
36
  "@marko/run/adapter/middleware"
@@ -99,6 +99,7 @@ var defaultConfigFileBases = ["serve.config", "vite.config"];
99
99
  var defaultConfigFileExts = [".js", ".cjs", ".mjs", ".ts", ".mts"];
100
100
  var prog = sade("marko-run").version("0.0.1").option("-c, --config", `Provide path to a Vite config file (by default looks for a file starting with ${defaultConfigFileBases.join(" or ")} with one of these extensions: ${defaultConfigFileExts.join(", ")})`).option("-e, --env", "Provide path to a dotenv file");
101
101
  prog.command("preview [entry]").describe("Start a production-like server for already-built app files").option("-o, --output", "Directory to serve files from, and write asset files to if `--build` (default: )").option("-p, --port", "Port the server should listen on (defaults: `$PORT` env variable or 3000)").option("-f, --file", "Output file to start").action(async (entry, opts) => {
102
+ process.env.NODE_ENV = "production";
102
103
  const config2 = await getViteConfig(cwd, opts.config);
103
104
  await build(entry, config2, opts.output, false, opts.env);
104
105
  await preview(opts.entry, config2, opts.port, opts.output, opts.env);
@@ -109,6 +110,7 @@ prog.command("dev [entry]", "", { default: true }).describe("Start development s
109
110
  await dev(cmd, config2, opts.port, opts.env);
110
111
  });
111
112
  prog.command("build [entry]").describe("Build the application (without serving it)").option("-o, --output", "Directory to write built files (default: 'build.outDir' in Vite config)").option("--skip-client", "Skip the client-side build").example("build --config vite.config.js").action(async (entry, opts) => {
113
+ process.env.NODE_ENV = "production";
112
114
  const config2 = await getViteConfig(cwd, opts.config);
113
115
  await build(entry, config2, opts.ouput, opts["skip-client"], opts.env);
114
116
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@marko/run",
3
- "version": "0.0.1-beta9",
3
+ "version": "0.1.1",
4
4
  "description": "The Marko application framework.",
5
5
  "license": "MIT",
6
6
  "homepage": "https://github.com/marko-js/run/tree/main/packages/run",