vite 8.2.2 → 8.3.0-beta.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.
@@ -1,88 +1,37 @@
1
1
  /// <reference types="node" />
2
2
  import { t as ModuleRunnerTransport } from "./chunks/moduleRunnerTransport.js";
3
- import { ConnectedPayload, CustomPayload, CustomPayload as hmrPayload_CustomPayload, ErrorPayload, FullReloadPayload, HMRPayload, HotPayload, HotPayload as hmrPayload_HotPayload, PrunePayload, Update, UpdatePayload } from "#types/hmrPayload";
4
3
  import { CustomEventMap, InferCustomEventPayload, InferCustomEventPayload as hmrPayload_InferCustomEventPayload, InvalidatePayload } from "#types/customEvent";
4
+ import { ConnectedPayload, CustomPayload, CustomPayload as hmrPayload_CustomPayload, ErrorPayload, FullReloadPayload, HMRPayload, HotPayload, HotPayload as hmrPayload_HotPayload, PrunePayload, Update, UpdatePayload } from "#types/hmrPayload";
5
5
  import * as Rolldown from "rolldown";
6
6
  import { CustomPluginOptions, ExistingRawSourceMap, FunctionPluginHooks, ImportKind, InputOption, InputOptions, LoadResult, MinimalPluginContext, ModuleFormat, ModuleInfo, ModuleType, ModuleTypeFilter, ObjectHook, OutputBundle, OutputChunk, OutputOptions, PartialResolvedId, PluginContext, PluginContextMeta, ResolveIdResult, RolldownOptions, RolldownOutput, RolldownWatcher, RollupError, RollupLog, SourceDescription, SourceMap, SourceMapInput, TransformPluginContext, VERSION as rolldownVersion, WatcherOptions } from "rolldown";
7
7
  import { parseAst as parseAst$1, parseAstAsync as parseAstAsync$1 } from "rolldown/parseAst";
8
8
  import * as Rollup from "#types/internal/rollupTypeCompat";
9
9
  import { esmExternalRequirePlugin } from "rolldown/plugins";
10
10
  import { ESTree, MinifyOptions, MinifyResult, ParseResult, ParserOptions, TransformOptions as rolldown_utils_TransformOptions, TransformResult as rolldown_utils_TransformResult, Visitor, VisitorObject, minify, minifySync, parse, parseSync } from "rolldown/utils";
11
+ import { DevToolsConfig, ResolvedDevToolsConfig } from "#types/internal/devtoolsOptions";
12
+ import { DepsOptimizerEsbuildOptions, EsbuildTarget, EsbuildTransformOptions, EsbuildTransformOptions as esbuildOptions_EsbuildTransformOptions, EsbuildTransformResult } from "#types/internal/esbuildOptions";
13
+ import { ChunkMetadata, CustomPluginOptionsVite } from "#types/metadata";
11
14
  import * as http from "node:http";
12
15
  import { Agent, ClientRequest, ClientRequestArgs, OutgoingHttpHeaders, ServerResponse } from "node:http";
13
16
  import { Http2SecureServer } from "node:http2";
14
- import * as fs from "node:fs";
15
17
  import { EventEmitter } from "node:events";
18
+ import * as fs from "node:fs";
16
19
  import { Server as HttpsServer, ServerOptions as HttpsServerOptions } from "node:https";
17
20
  import * as net from "node:net";
18
21
  import { Duplex, DuplexOptions, Stream } from "node:stream";
19
22
  import { FetchFunction, FetchFunctionOptions, FetchResult, FetchResult as moduleRunner_FetchResult, ModuleEvaluator, ModuleRunner, ModuleRunnerHmr, ModuleRunnerOptions } from "vite/module-runner";
20
- import { DepsOptimizerEsbuildOptions, EsbuildTarget, EsbuildTransformOptions, EsbuildTransformOptions as esbuildOptions_EsbuildTransformOptions, EsbuildTransformResult } from "#types/internal/esbuildOptions";
21
23
  import { SecureContextOptions } from "node:tls";
22
24
  import { URL as url_URL } from "node:url";
23
25
  import { ZlibOptions } from "node:zlib";
24
- import { ChunkMetadata, CustomPluginOptionsVite } from "#types/metadata";
26
+ import { DevWatchOptions } from "rolldown/experimental";
25
27
  import { Terser, TerserMinifyOptions } from "#types/internal/terserOptions";
26
28
  import * as PostCSS from "postcss";
27
29
  import { ProcessOptions, Processor, Transformer } from "postcss";
28
- import { LightningCSSOptions, LightningCSSOptions as lightningcssOptions_LightningCSSOptions } from "#types/internal/lightningcssOptions";
29
30
  import { LessPreprocessorBaseOptions, SassModernPreprocessBaseOptions, StylusPreprocessorBaseOptions } from "#types/internal/cssPreprocessorOptions";
31
+ import { LightningCSSOptions, LightningCSSOptions as lightningcssOptions_LightningCSSOptions } from "#types/internal/lightningcssOptions";
30
32
  import { withFilter } from "rolldown/filter";
31
33
  import { GeneralImportGlobOptions, ImportGlobFunction, ImportGlobOptions, KnownAsTypeMap, KnownQueryTypeMap } from "#types/importGlob";
32
34
  //#endregion
33
- //#region ../../node_modules/.pnpm/@vitejs+devtools@0.4.12_crossws@0.4.10_srvx@0.12.5_typescript@6.0.3_vite@packages+vite/node_modules/@vitejs/devtools/dist/cli-commands.d.ts
34
- //#region src/node/cli-commands.d.ts
35
- interface StartOptions {
36
- root?: string;
37
- config?: string;
38
- host: string;
39
- port?: string | number;
40
- open?: boolean;
41
- }
42
- //#endregion
43
- //#region ../../node_modules/.pnpm/@vitejs+devtools@0.4.12_crossws@0.4.10_srvx@0.12.5_typescript@6.0.3_vite@packages+vite/node_modules/@vitejs/devtools/dist/config.d.ts
44
- //#region src/node/config.d.ts
45
- interface DevToolsConfig extends Partial<StartOptions> {
46
- enabled: boolean;
47
- /**
48
- * Vite environments to enable DevTools for. Defaults to all environments.
49
- */
50
- environments?: string[];
51
- /**
52
- * Disable client authentication.
53
- *
54
- * Beware that if you disable client authentication,
55
- * any browsers can connect to the devtools and access to your server and filesystem.
56
- * (including other devices, if you open server `host` option to LAN or WAN)
57
- *
58
- * @default true
59
- */
60
- clientAuth?: boolean;
61
- /**
62
- * Pre-configured auth tokens that are automatically trusted.
63
- *
64
- * Clients connecting with an auth token matching one of these
65
- * will be auto-approved without a terminal prompt.
66
- */
67
- clientAuthTokens?: string[];
68
- /**
69
- * Origins allowed to open the DevTools WebSocket connection, in addition to the built-in
70
- * loopback allowlist (`localhost`, `127.0.0.1`, etc).
71
- *
72
- * The loopback check is a plain string match against the `Origin` header, not a DNS/hosts-file
73
- * resolution — a custom dev hostname that resolves to loopback via `/etc/hosts` or a local DNS
74
- * override (e.g. `dev-my-app.example.com`) is invisible to it and gets rejected. List such
75
- * hostnames here explicitly.
76
- */
77
- allowedOrigins?: string[];
78
- }
79
- interface ResolvedDevToolsConfig {
80
- config: Omit<DevToolsConfig, 'enabled'> & {
81
- host: string;
82
- };
83
- enabled: boolean;
84
- }
85
- //#endregion
86
35
  //#region src/types/alias.d.ts
87
36
  interface Alias {
88
37
  find: string | RegExp;
@@ -114,124 +63,385 @@ type AliasOptions = readonly Alias[] | {
114
63
  [find: string]: string;
115
64
  };
116
65
  //#endregion
117
- //#region src/types/anymatch.d.ts
118
- type AnymatchFn = (testString: string) => boolean;
119
- type AnymatchPattern = string | RegExp | AnymatchFn;
120
- type AnymatchMatcher = AnymatchPattern | AnymatchPattern[];
121
- //#endregion
122
- //#region src/types/chokidar.d.ts
123
- declare class FSWatcher extends EventEmitter implements fs.FSWatcher {
124
- options: WatchOptions;
125
- /**
126
- * Constructs a new FSWatcher instance with optional WatchOptions parameter.
127
- */
128
- constructor(options?: WatchOptions);
129
- /**
130
- * When called, requests that the Node.js event loop not exit so long as the fs.FSWatcher is active.
131
- * Calling watcher.ref() multiple times will have no effect.
132
- */
133
- ref(): this;
66
+ //#region src/node/assetSource.d.ts
67
+ /**
68
+ * Defines which attributes of an HTML element should be treated as asset sources.
69
+ * Used in `html.additionalAssetSources` configuration.
70
+ */
71
+ interface HtmlAssetSource {
134
72
  /**
135
- * When called, the active fs.FSWatcher object will not require the Node.js event loop to remain active.
136
- * If there is no other activity keeping the event loop running, the process may exit before the fs.FSWatcher object's callback is invoked.
137
- * Calling watcher.unref() multiple times will have no effect.
73
+ * Attributes that contain a single asset URL.
74
+ * @example ['src', 'data-src-dark']
138
75
  */
139
- unref(): this;
76
+ srcAttributes?: string[];
140
77
  /**
141
- * Add files, directories, or glob patterns for tracking. Takes an array of strings or just one
142
- * string.
78
+ * Attributes that contain srcset-format URLs.
79
+ * @example ['srcset', 'imagesrcset']
143
80
  */
144
- add(paths: string | ReadonlyArray<string>): this;
81
+ srcsetAttributes?: string[];
145
82
  /**
146
- * Stop watching files, directories, or glob patterns. Takes an array of strings or just one
147
- * string.
83
+ * Called before handling an attribute to determine if it should be processed.
148
84
  */
149
- unwatch(paths: string | ReadonlyArray<string>): this;
85
+ filter?: (data: HtmlAssetSourceFilterData) => boolean;
86
+ }
87
+ interface HtmlAssetSourceFilterData {
88
+ key: string;
89
+ value: string;
90
+ attributes: Record<string, string>;
91
+ }
92
+ //#endregion
93
+ //#region src/types/commonjs.d.ts
94
+
95
+ interface RollupCommonJSOptions {
150
96
  /**
151
- * Returns an object representing all the paths on the file system being watched by this
152
- * `FSWatcher` instance. The object's keys are all the directories (using absolute paths unless
153
- * the `cwd` option was used), and the values are arrays of the names of the items contained in
154
- * each directory.
97
+ * A minimatch pattern, or array of patterns, which specifies the files in
98
+ * the build the plugin should operate on. By default, all files with
99
+ * extension `".cjs"` or those in `extensions` are included, but you can
100
+ * narrow this list by only including specific files. These files will be
101
+ * analyzed and transpiled if either the analysis does not find ES module
102
+ * specific statements or `transformMixedEsModules` is `true`.
103
+ * @default undefined
155
104
  */
156
- getWatched(): {
157
- [directory: string]: string[];
158
- };
105
+ include?: string | RegExp | readonly (string | RegExp)[];
159
106
  /**
160
- * Removes all listeners from watched files.
107
+ * A minimatch pattern, or array of patterns, which specifies the files in
108
+ * the build the plugin should _ignore_. By default, all files with
109
+ * extensions other than those in `extensions` or `".cjs"` are ignored, but you
110
+ * can exclude additional files. See also the `include` option.
111
+ * @default undefined
161
112
  */
162
- close(): Promise<void>;
163
- on(event: 'add' | 'addDir' | 'change', listener: (path: string, stats?: fs.Stats) => void): this;
164
- on(event: 'all', listener: (eventName: 'add' | 'addDir' | 'change' | 'unlink' | 'unlinkDir', path: string, stats?: fs.Stats) => void): this;
113
+ exclude?: string | RegExp | readonly (string | RegExp)[];
165
114
  /**
166
- * Error occurred
115
+ * For extensionless imports, search for extensions other than .js in the
116
+ * order specified. Note that you need to make sure that non-JavaScript files
117
+ * are transpiled by another plugin first.
118
+ * @default [ '.js' ]
167
119
  */
168
- on(event: 'error', listener: (error: Error) => void): this;
120
+ extensions?: ReadonlyArray<string>;
169
121
  /**
170
- * Exposes the native Node `fs.FSWatcher events`
122
+ * If true then uses of `global` won't be dealt with by this plugin
123
+ * @default false
171
124
  */
172
- on(event: 'raw', listener: (eventName: string, path: string, details: any) => void): this;
125
+ ignoreGlobal?: boolean;
173
126
  /**
174
- * Fires when the initial scan is complete
127
+ * If false, skips source map generation for CommonJS modules. This will
128
+ * improve performance.
129
+ * @default true
175
130
  */
176
- on(event: 'ready', listener: () => void): this;
177
- on(event: 'unlink' | 'unlinkDir', listener: (path: string) => void): this;
178
- on(event: string, listener: (...args: any[]) => void): this;
179
- }
180
- interface WatchOptions {
131
+ sourceMap?: boolean;
181
132
  /**
182
- * Indicates whether the process should continue to run as long as files are being watched. If
183
- * set to `false` when using `fsevents` to watch, no more events will be emitted after `ready`,
184
- * even if the process continues to run.
133
+ * Some `require` calls cannot be resolved statically to be translated to
134
+ * imports.
135
+ * When this option is set to `false`, the generated code will either
136
+ * directly throw an error when such a call is encountered or, when
137
+ * `dynamicRequireTargets` is used, when such a call cannot be resolved with a
138
+ * configured dynamic require target.
139
+ * Setting this option to `true` will instead leave the `require` call in the
140
+ * code or use it as a fallback for `dynamicRequireTargets`.
141
+ * @default false
185
142
  */
186
- persistent?: boolean;
143
+ ignoreDynamicRequires?: boolean;
187
144
  /**
188
- * ([anymatch](https://github.com/micromatch/anymatch)-compatible definition) Defines files/paths to
189
- * be ignored. The whole relative or absolute path is tested, not just filename. If a function
190
- * with two arguments is provided, it gets called twice per path - once with a single argument
191
- * (the path), second time with two arguments (the path and the
192
- * [`fs.Stats`](https://nodejs.org/api/fs.html#fs_class_fs_stats) object of that path).
145
+ * Instructs the plugin whether to enable mixed module transformations. This
146
+ * is useful in scenarios with modules that contain a mix of ES `import`
147
+ * statements and CommonJS `require` expressions. Set to `true` if `require`
148
+ * calls should be transformed to imports in mixed modules, or `false` if the
149
+ * `require` expressions should survive the transformation. The latter can be
150
+ * important if the code contains environment detection, or you are coding
151
+ * for an environment with special treatment for `require` calls such as
152
+ * ElectronJS. See also the `ignore` option.
153
+ * @default false
193
154
  */
194
- ignored?: AnymatchMatcher;
155
+ transformMixedEsModules?: boolean;
195
156
  /**
196
- * If set to `false` then `add`/`addDir` events are also emitted for matching paths while
197
- * instantiating the watching as chokidar discovers these file paths (before the `ready` event).
157
+ * By default, this plugin will try to hoist `require` statements as imports
158
+ * to the top of each file. While this works well for many code bases and
159
+ * allows for very efficient ESM output, it does not perfectly capture
160
+ * CommonJS semantics as the order of side effects like log statements may
161
+ * change. But it is especially problematic when there are circular `require`
162
+ * calls between CommonJS modules as those often rely on the lazy execution of
163
+ * nested `require` calls.
164
+ *
165
+ * Setting this option to `true` will wrap all CommonJS files in functions
166
+ * which are executed when they are required for the first time, preserving
167
+ * NodeJS semantics. Note that this can have an impact on the size and
168
+ * performance of the generated code.
169
+ *
170
+ * The default value of `"auto"` will only wrap CommonJS files when they are
171
+ * part of a CommonJS dependency cycle, e.g. an index file that is required by
172
+ * many of its dependencies. All other CommonJS files are hoisted. This is the
173
+ * recommended setting for most code bases.
174
+ *
175
+ * `false` will entirely prevent wrapping and hoist all files. This may still
176
+ * work depending on the nature of cyclic dependencies but will often cause
177
+ * problems.
178
+ *
179
+ * You can also provide a minimatch pattern, or array of patterns, to only
180
+ * specify a subset of files which should be wrapped in functions for proper
181
+ * `require` semantics.
182
+ *
183
+ * `"debug"` works like `"auto"` but after bundling, it will display a warning
184
+ * containing a list of ids that have been wrapped which can be used as
185
+ * minimatch pattern for fine-tuning.
186
+ * @default "auto"
198
187
  */
199
- ignoreInitial?: boolean;
188
+ strictRequires?: boolean | string | RegExp | readonly (string | RegExp)[];
200
189
  /**
201
- * When `false`, only the symlinks themselves will be watched for changes instead of following
202
- * the link references and bubbling events through the link's path.
190
+ * Sometimes you have to leave require statements unconverted. Pass an array
191
+ * containing the IDs or a `id => boolean` function.
192
+ * @default []
203
193
  */
204
- followSymlinks?: boolean;
194
+ ignore?: ReadonlyArray<string> | ((id: string) => boolean);
205
195
  /**
206
- * The base directory from which watch `paths` are to be derived. Paths emitted with events will
207
- * be relative to this.
196
+ * In most cases, where `require` calls are inside a `try-catch` clause,
197
+ * they should be left unconverted as it requires an optional dependency
198
+ * that may or may not be installed beside the rolled up package.
199
+ * Due to the conversion of `require` to a static `import` - the call is
200
+ * hoisted to the top of the file, outside the `try-catch` clause.
201
+ *
202
+ * - `true`: Default. All `require` calls inside a `try` will be left unconverted.
203
+ * - `false`: All `require` calls inside a `try` will be converted as if the
204
+ * `try-catch` clause is not there.
205
+ * - `remove`: Remove all `require` calls from inside any `try` block.
206
+ * - `string[]`: Pass an array containing the IDs to left unconverted.
207
+ * - `((id: string) => boolean|'remove')`: Pass a function that controls
208
+ * individual IDs.
209
+ *
210
+ * @default true
208
211
  */
209
- cwd?: string;
212
+ ignoreTryCatch?: boolean | 'remove' | ReadonlyArray<string> | ((id: string) => boolean | 'remove');
210
213
  /**
211
- * If set to true then the strings passed to .watch() and .add() are treated as literal path
212
- * names, even if they look like globs.
214
+ * Controls how to render imports from external dependencies. By default,
215
+ * this plugin assumes that all external dependencies are CommonJS. This
216
+ * means they are rendered as default imports to be compatible with e.g.
217
+ * NodeJS where ES modules can only import a default export from a CommonJS
218
+ * dependency.
219
+ *
220
+ * If you set `esmExternals` to `true`, this plugin assumes that all
221
+ * external dependencies are ES modules and respect the
222
+ * `requireReturnsDefault` option. If that option is not set, they will be
223
+ * rendered as namespace imports.
213
224
  *
225
+ * You can also supply an array of ids to be treated as ES modules, or a
226
+ * function that will be passed each external id to determine whether it is
227
+ * an ES module.
214
228
  * @default false
215
229
  */
216
- disableGlobbing?: boolean;
217
- /**
218
- * Whether to use fs.watchFile (backed by polling), or fs.watch. If polling leads to high CPU
219
- * utilization, consider setting this to `false`. It is typically necessary to **set this to
220
- * `true` to successfully watch files over a network**, and it may be necessary to successfully
221
- * watch files in other non-standard situations. Setting to `true` explicitly on OS X overrides
222
- * the `useFsEvents` default.
223
- */
224
- usePolling?: boolean;
225
- /**
226
- * Whether to use the `fsevents` watching interface if available. When set to `true` explicitly
227
- * and `fsevents` is available this supersedes the `usePolling` setting. When set to `false` on
228
- * OS X, `usePolling: true` becomes the default.
229
- */
230
- useFsEvents?: boolean;
230
+ esmExternals?: boolean | ReadonlyArray<string> | ((id: string) => boolean);
231
231
  /**
232
- * If relying upon the [`fs.Stats`](https://nodejs.org/api/fs.html#fs_class_fs_stats) object that
233
- * may get passed with `add`, `addDir`, and `change` events, set this to `true` to ensure it is
234
- * provided even in cases where it wasn't already available from the underlying watch events.
232
+ * Controls what is returned when requiring an ES module from a CommonJS file.
233
+ * When using the `esmExternals` option, this will also apply to external
234
+ * modules. By default, this plugin will render those imports as namespace
235
+ * imports i.e.
236
+ *
237
+ * ```js
238
+ * // input
239
+ * const foo = require('foo');
240
+ *
241
+ * // output
242
+ * import * as foo from 'foo';
243
+ * ```
244
+ *
245
+ * However, there are some situations where this may not be desired.
246
+ * For these situations, you can change Rollup's behaviour either globally or
247
+ * per module. To change it globally, set the `requireReturnsDefault` option
248
+ * to one of the following values:
249
+ *
250
+ * - `false`: This is the default, requiring an ES module returns its
251
+ * namespace. This is the only option that will also add a marker
252
+ * `__esModule: true` to the namespace to support interop patterns in
253
+ * CommonJS modules that are transpiled ES modules.
254
+ * - `"namespace"`: Like `false`, requiring an ES module returns its
255
+ * namespace, but the plugin does not add the `__esModule` marker and thus
256
+ * creates more efficient code. For external dependencies when using
257
+ * `esmExternals: true`, no additional interop code is generated.
258
+ * - `"auto"`: This is complementary to how `output.exports: "auto"` works in
259
+ * Rollup: If a module has a default export and no named exports, requiring
260
+ * that module returns the default export. In all other cases, the namespace
261
+ * is returned. For external dependencies when using `esmExternals: true`, a
262
+ * corresponding interop helper is added.
263
+ * - `"preferred"`: If a module has a default export, requiring that module
264
+ * always returns the default export, no matter whether additional named
265
+ * exports exist. This is similar to how previous versions of this plugin
266
+ * worked. Again for external dependencies when using `esmExternals: true`,
267
+ * an interop helper is added.
268
+ * - `true`: This will always try to return the default export on require
269
+ * without checking if it actually exists. This can throw at build time if
270
+ * there is no default export. This is how external dependencies are handled
271
+ * when `esmExternals` is not used. The advantage over the other options is
272
+ * that, like `false`, this does not add an interop helper for external
273
+ * dependencies, keeping the code lean.
274
+ *
275
+ * To change this for individual modules, you can supply a function for
276
+ * `requireReturnsDefault` instead. This function will then be called once for
277
+ * each required ES module or external dependency with the corresponding id
278
+ * and allows you to return different values for different modules.
279
+ * @default false
280
+ */
281
+ requireReturnsDefault?: boolean | 'auto' | 'preferred' | 'namespace' | ((id: string) => boolean | 'auto' | 'preferred' | 'namespace');
282
+ /**
283
+ * @default "auto"
284
+ */
285
+ defaultIsModuleExports?: boolean | 'auto' | ((id: string) => boolean | 'auto');
286
+ /**
287
+ * Some modules contain dynamic `require` calls, or require modules that
288
+ * contain circular dependencies, which are not handled well by static
289
+ * imports. Including those modules as `dynamicRequireTargets` will simulate a
290
+ * CommonJS (NodeJS-like) environment for them with support for dynamic
291
+ * dependencies. It also enables `strictRequires` for those modules.
292
+ *
293
+ * Note: In extreme cases, this feature may result in some paths being
294
+ * rendered as absolute in the final bundle. The plugin tries to avoid
295
+ * exposing paths from the local machine, but if you are `dynamicRequirePaths`
296
+ * with paths that are far away from your project's folder, that may require
297
+ * replacing strings like `"/Users/John/Desktop/foo-project/"` -\> `"/"`.
298
+ */
299
+ dynamicRequireTargets?: string | ReadonlyArray<string>;
300
+ /**
301
+ * To avoid long paths when using the `dynamicRequireTargets` option, you can use this option to specify a directory
302
+ * that is a common parent for all files that use dynamic require statements. Using a directory higher up such as `/`
303
+ * may lead to unnecessarily long paths in the generated code and may expose directory names on your machine like your
304
+ * home directory name. By default, it uses the current working directory.
305
+ */
306
+ dynamicRequireRoot?: string;
307
+ }
308
+ //#endregion
309
+ //#region src/types/dynamicImportVars.d.ts
310
+ interface RollupDynamicImportVarsOptions {
311
+ /**
312
+ * Files to include in this plugin (default all).
313
+ * @default []
314
+ */
315
+ include?: string | RegExp | (string | RegExp)[];
316
+ /**
317
+ * Files to exclude in this plugin (default none).
318
+ * @default []
319
+ */
320
+ exclude?: string | RegExp | (string | RegExp)[];
321
+ /**
322
+ * @deprecated This option is no-op and will be removed in future versions.
323
+ */
324
+ warnOnError?: boolean;
325
+ }
326
+ //#endregion
327
+ //#region src/types/anymatch.d.ts
328
+ type AnymatchFn = (testString: string) => boolean;
329
+ type AnymatchPattern = string | RegExp | AnymatchFn;
330
+ type AnymatchMatcher = AnymatchPattern | AnymatchPattern[];
331
+ //#endregion
332
+ //#region src/types/chokidar.d.ts
333
+ declare class FSWatcher extends EventEmitter implements fs.FSWatcher {
334
+ options: WatchOptions;
335
+ /**
336
+ * Constructs a new FSWatcher instance with optional WatchOptions parameter.
337
+ */
338
+ constructor(options?: WatchOptions);
339
+ /**
340
+ * When called, requests that the Node.js event loop not exit so long as the fs.FSWatcher is active.
341
+ * Calling watcher.ref() multiple times will have no effect.
342
+ */
343
+ ref(): this;
344
+ /**
345
+ * When called, the active fs.FSWatcher object will not require the Node.js event loop to remain active.
346
+ * If there is no other activity keeping the event loop running, the process may exit before the fs.FSWatcher object's callback is invoked.
347
+ * Calling watcher.unref() multiple times will have no effect.
348
+ */
349
+ unref(): this;
350
+ /**
351
+ * Add files, directories, or glob patterns for tracking. Takes an array of strings or just one
352
+ * string.
353
+ */
354
+ add(paths: string | ReadonlyArray<string>): this;
355
+ /**
356
+ * Stop watching files, directories, or glob patterns. Takes an array of strings or just one
357
+ * string.
358
+ */
359
+ unwatch(paths: string | ReadonlyArray<string>): this;
360
+ /**
361
+ * Returns an object representing all the paths on the file system being watched by this
362
+ * `FSWatcher` instance. The object's keys are all the directories (using absolute paths unless
363
+ * the `cwd` option was used), and the values are arrays of the names of the items contained in
364
+ * each directory.
365
+ */
366
+ getWatched(): {
367
+ [directory: string]: string[];
368
+ };
369
+ /**
370
+ * Removes all listeners from watched files.
371
+ */
372
+ close(): Promise<void>;
373
+ on(event: 'add' | 'addDir' | 'change', listener: (path: string, stats?: fs.Stats) => void): this;
374
+ on(event: 'all', listener: (eventName: 'add' | 'addDir' | 'change' | 'unlink' | 'unlinkDir', path: string, stats?: fs.Stats) => void): this;
375
+ /**
376
+ * Error occurred
377
+ */
378
+ on(event: 'error', listener: (error: Error) => void): this;
379
+ /**
380
+ * Exposes the native Node `fs.FSWatcher events`
381
+ */
382
+ on(event: 'raw', listener: (eventName: string, path: string, details: any) => void): this;
383
+ /**
384
+ * Fires when the initial scan is complete
385
+ */
386
+ on(event: 'ready', listener: () => void): this;
387
+ on(event: 'unlink' | 'unlinkDir', listener: (path: string) => void): this;
388
+ on(event: string, listener: (...args: any[]) => void): this;
389
+ }
390
+ interface WatchOptions {
391
+ /**
392
+ * Indicates whether the process should continue to run as long as files are being watched. If
393
+ * set to `false` when using `fsevents` to watch, no more events will be emitted after `ready`,
394
+ * even if the process continues to run.
395
+ */
396
+ persistent?: boolean;
397
+ /**
398
+ * ([anymatch](https://github.com/micromatch/anymatch)-compatible definition) Defines files/paths to
399
+ * be ignored. The whole relative or absolute path is tested, not just filename. If a function
400
+ * with two arguments is provided, it gets called twice per path - once with a single argument
401
+ * (the path), second time with two arguments (the path and the
402
+ * [`fs.Stats`](https://nodejs.org/api/fs.html#fs_class_fs_stats) object of that path).
403
+ */
404
+ ignored?: AnymatchMatcher;
405
+ /**
406
+ * If set to `false` then `add`/`addDir` events are also emitted for matching paths while
407
+ * instantiating the watching as chokidar discovers these file paths (before the `ready` event).
408
+ */
409
+ ignoreInitial?: boolean;
410
+ /**
411
+ * When `false`, only the symlinks themselves will be watched for changes instead of following
412
+ * the link references and bubbling events through the link's path.
413
+ */
414
+ followSymlinks?: boolean;
415
+ /**
416
+ * The base directory from which watch `paths` are to be derived. Paths emitted with events will
417
+ * be relative to this.
418
+ */
419
+ cwd?: string;
420
+ /**
421
+ * If set to true then the strings passed to .watch() and .add() are treated as literal path
422
+ * names, even if they look like globs.
423
+ *
424
+ * @default false
425
+ */
426
+ disableGlobbing?: boolean;
427
+ /**
428
+ * Whether to use fs.watchFile (backed by polling), or fs.watch. If polling leads to high CPU
429
+ * utilization, consider setting this to `false`. It is typically necessary to **set this to
430
+ * `true` to successfully watch files over a network**, and it may be necessary to successfully
431
+ * watch files in other non-standard situations. Setting to `true` explicitly on OS X overrides
432
+ * the `useFsEvents` default.
433
+ */
434
+ usePolling?: boolean;
435
+ /**
436
+ * Whether to use the `fsevents` watching interface if available. When set to `true` explicitly
437
+ * and `fsevents` is available this supersedes the `usePolling` setting. When set to `false` on
438
+ * OS X, `usePolling: true` becomes the default.
439
+ */
440
+ useFsEvents?: boolean;
441
+ /**
442
+ * If relying upon the [`fs.Stats`](https://nodejs.org/api/fs.html#fs_class_fs_stats) object that
443
+ * may get passed with `add`, `addDir`, and `change` events, set this to `true` to ensure it is
444
+ * provided even in cases where it wasn't already available from the underlying watch events.
235
445
  */
236
446
  alwaysStat?: boolean;
237
447
  /**
@@ -345,6 +555,18 @@ declare namespace Connect {
345
555
  }
346
556
  }
347
557
  //#endregion
558
+ //#region src/shared/forwardConsole.d.ts
559
+ type ForwardConsoleLogLevel = "error" | "warn" | "info" | "log" | "debug" | (string & {});
560
+ interface ForwardConsoleOptions {
561
+ unhandledErrors?: boolean;
562
+ logLevels?: ForwardConsoleLogLevel[];
563
+ }
564
+ interface ResolvedForwardConsoleOptions {
565
+ enabled: boolean;
566
+ unhandledErrors: boolean;
567
+ logLevels: ForwardConsoleLogLevel[];
568
+ }
569
+ //#endregion
348
570
  //#region ../../node_modules/.pnpm/http-proxy-3@1.23.3_ms@2.1.3/node_modules/http-proxy-3/dist/lib/http-proxy/index.d.ts
349
571
  interface ProxyTargetDetailed {
350
572
  host: string;
@@ -576,34 +798,6 @@ interface ProxyOptions extends ServerOptions$3 {
576
798
  rewriteWsOrigin?: boolean | undefined;
577
799
  }
578
800
  //#endregion
579
- //#region src/node/logger.d.ts
580
- type LogType = "error" | "warn" | "info";
581
- type LogLevel = LogType | "silent";
582
- interface Logger {
583
- info(msg: string, options?: LogOptions): void;
584
- warn(msg: string, options?: LogOptions): void;
585
- warnOnce(msg: string, options?: LogOptions): void;
586
- error(msg: string, options?: LogErrorOptions): void;
587
- clearScreen(type: LogType): void;
588
- hasErrorLogged(error: Error | RollupError): boolean;
589
- hasWarned: boolean;
590
- }
591
- interface LogOptions {
592
- clear?: boolean;
593
- timestamp?: boolean;
594
- environment?: string;
595
- }
596
- interface LogErrorOptions extends LogOptions {
597
- error?: Error | RollupError | null;
598
- }
599
- interface LoggerOptions {
600
- prefix?: string;
601
- allowClearScreen?: boolean;
602
- customLogger?: Logger;
603
- console?: Console;
604
- }
605
- export declare function createLogger(level?: LogLevel, options?: LoggerOptions): Logger;
606
- //#endregion
607
801
  //#region src/node/http.d.ts
608
802
  interface CommonServerOptions {
609
803
  /**
@@ -704,120 +898,6 @@ interface CorsOptions {
704
898
  }
705
899
  type CorsOrigin = boolean | string | RegExp | (string | RegExp)[];
706
900
  //#endregion
707
- //#region src/shared/forwardConsole.d.ts
708
- type ForwardConsoleLogLevel = "error" | "warn" | "info" | "log" | "debug" | (string & {});
709
- interface ForwardConsoleOptions {
710
- unhandledErrors?: boolean;
711
- logLevels?: ForwardConsoleLogLevel[];
712
- }
713
- interface ResolvedForwardConsoleOptions {
714
- enabled: boolean;
715
- unhandledErrors: boolean;
716
- logLevels: ForwardConsoleLogLevel[];
717
- }
718
- //#endregion
719
- //#region src/node/typeUtils.d.ts
720
- type RequiredExceptFor<T, K extends keyof T> = Pick<T, K> & Required<Omit<T, K>>;
721
- //#endregion
722
- //#region src/node/preview.d.ts
723
- interface PreviewOptions extends CommonServerOptions {}
724
- interface ResolvedPreviewOptions extends RequiredExceptFor<PreviewOptions, "host" | "https" | "proxy"> {}
725
- interface PreviewServer {
726
- /**
727
- * The resolved vite config object
728
- */
729
- config: ResolvedConfig;
730
- /**
731
- * Stop the server.
732
- */
733
- close(): Promise<void>;
734
- /**
735
- * A connect app instance.
736
- * - Can be used to attach custom middlewares to the preview server.
737
- * - Can also be used as the handler function of a custom http server
738
- * or as a middleware in any connect-style Node.js frameworks
739
- *
740
- * https://github.com/senchalabs/connect#use-middleware
741
- */
742
- middlewares: Connect.Server;
743
- /**
744
- * native Node http server instance
745
- */
746
- httpServer: HttpServer;
747
- /**
748
- * The resolved urls Vite prints on the CLI (URL-encoded). Returns `null`
749
- * if the server is not listening on any port.
750
- */
751
- resolvedUrls: ResolvedServerUrls | null;
752
- /**
753
- * Print server urls
754
- */
755
- printUrls(): void;
756
- /**
757
- * Bind CLI shortcuts
758
- */
759
- bindCLIShortcuts(options?: BindCLIShortcutsOptions<PreviewServer>): void;
760
- }
761
- type PreviewServerHook = (this: MinimalPluginContextWithoutEnvironment, server: PreviewServer) => (() => void) | void | Promise<(() => void) | void>;
762
- /**
763
- * Starts the Vite server in preview mode, to simulate a production deployment
764
- */
765
- export declare function preview(inlineConfig?: InlineConfig): Promise<PreviewServer>;
766
- //#endregion
767
- //#region src/node/shortcuts.d.ts
768
- type BindCLIShortcutsOptions<Server = ViteDevServer | PreviewServer> = {
769
- /**
770
- * Print a one-line shortcuts "help" hint to the terminal
771
- */
772
- print?: boolean;
773
- /**
774
- * Custom shortcuts to run when a key is pressed. These shortcuts take priority
775
- * over the default shortcuts if they have the same keys (except the `h` key).
776
- * To disable a default shortcut, define the same key but with `action: undefined`.
777
- */
778
- customShortcuts?: CLIShortcut<Server>[];
779
- };
780
- type CLIShortcut<Server = ViteDevServer | PreviewServer> = {
781
- key: string;
782
- description: string;
783
- action?(server: Server): void | Promise<void>;
784
- };
785
- //#endregion
786
- //#region src/node/baseEnvironment.d.ts
787
- declare class PartialEnvironment {
788
- name: string;
789
- getTopLevelConfig(): ResolvedConfig;
790
- config: ResolvedConfig & ResolvedEnvironmentOptions;
791
- logger: Logger;
792
- constructor(name: string, topLevelConfig: ResolvedConfig, options?: ResolvedEnvironmentOptions);
793
- }
794
- declare class BaseEnvironment extends PartialEnvironment {
795
- get plugins(): readonly Plugin[];
796
- constructor(name: string, config: ResolvedConfig, options?: ResolvedEnvironmentOptions);
797
- }
798
- /**
799
- * This class discourages users from inversely checking the `mode`
800
- * to determine the type of environment, e.g.
801
- *
802
- * ```js
803
- * const isDev = environment.mode !== 'build' // bad
804
- * const isDev = environment.mode === 'dev' // good
805
- * ```
806
- *
807
- * You should also not check against `"unknown"` specifically. It's
808
- * a placeholder for more possible environment types.
809
- */
810
- declare class UnknownEnvironment extends BaseEnvironment {
811
- mode: "unknown";
812
- }
813
- //#endregion
814
- //#region src/node/optimizer/scan.d.ts
815
- declare class ScanEnvironment extends BaseEnvironment {
816
- mode: "scan";
817
- get pluginContainer(): EnvironmentPluginContainer;
818
- init(): Promise<void>;
819
- }
820
- //#endregion
821
901
  //#region src/node/optimizer/index.d.ts
822
902
  type ExportsData = {
823
903
  hasModuleSyntax: boolean;
@@ -1015,6 +1095,59 @@ interface DepOptimizationMetadata {
1015
1095
  */
1016
1096
  export declare function optimizeDeps(config: ResolvedConfig, force?: boolean | undefined, asCommand?: boolean): Promise<DepOptimizationMetadata>;
1017
1097
  //#endregion
1098
+ //#region src/node/server/bundledDev.d.ts
1099
+ type MemoryFile = {
1100
+ source: string | Uint8Array;
1101
+ etag?: string;
1102
+ };
1103
+ declare class MemoryFiles {
1104
+ private files;
1105
+ get size(): number;
1106
+ get(file: string): MemoryFile | undefined;
1107
+ set(file: string, content: MemoryFile | (() => MemoryFile)): void;
1108
+ has(file: string): boolean;
1109
+ clear(): void;
1110
+ }
1111
+ declare class BundledDev {
1112
+ private environment;
1113
+ private _devEngine;
1114
+ private viteRuntime?;
1115
+ private initialBuildCompleted;
1116
+ private _closed;
1117
+ private clients;
1118
+ private debouncedFullReload;
1119
+ private fullReloadPending;
1120
+ private reloadNeededClientIds;
1121
+ private debouncedReloadNeededFlush;
1122
+ private lastBuildError;
1123
+ memoryFiles: MemoryFiles;
1124
+ constructor(environment: DevEnvironment);
1125
+ private get devEngine();
1126
+ private pendingPayloadFilenames;
1127
+ get hasBuildOutput(): boolean;
1128
+ listen(): Promise<void>;
1129
+ private waitForInitialBuildFinish;
1130
+ private ensureOutputAndFlushReloadNeeded;
1131
+ triggerBundleRegenerationIfStale(): Promise<boolean>;
1132
+ triggerLazyBundling(moduleId: string | null, clientId: string | null): Promise<{
1133
+ code: string;
1134
+ filename: string;
1135
+ } | undefined>;
1136
+ /**
1137
+ * Called when the client reports that it evaluated a payload (the line appended
1138
+ * by `payloadDeliveredAck`). Only then is the payload recorded on the server's
1139
+ * per-client ship map, so later chunks may omit a module only if the client
1140
+ * already registered it.
1141
+ *
1142
+ * Note: the payload filename is unique across all clients.
1143
+ */
1144
+ markPayloadDelivered(filename: string): void;
1145
+ close(): Promise<void>;
1146
+ private storeOutputFiles;
1147
+ private getRolldownOptions;
1148
+ private handleHmrOutput;
1149
+ }
1150
+ //#endregion
1018
1151
  //#region src/node/server/transformRequest.d.ts
1019
1152
  interface TransformResult {
1020
1153
  code: string;
@@ -1308,102 +1441,210 @@ type ServerHotChannel = HotChannel<ServerHotChannelApi>;
1308
1441
  type NormalizedServerHotChannel = NormalizedHotChannel<ServerHotChannelApi>;
1309
1442
  export declare function createServerHotChannel(): ServerHotChannel;
1310
1443
  //#endregion
1311
- //#region src/types/ws.d.ts
1312
- // WebSocket socket.
1313
- declare class WebSocket extends EventEmitter {
1314
- /** The connection is not yet open. */
1315
- static readonly CONNECTING: 0;
1316
- /** The connection is open and ready to communicate. */
1317
- static readonly OPEN: 1;
1318
- /** The connection is in the process of closing. */
1319
- static readonly CLOSING: 2;
1320
- /** The connection is closed. */
1321
- static readonly CLOSED: 3;
1322
- binaryType: 'nodebuffer' | 'arraybuffer' | 'fragments';
1323
- readonly bufferedAmount: number;
1324
- readonly extensions: string;
1325
- /** Indicates whether the websocket is paused */
1326
- readonly isPaused: boolean;
1327
- readonly protocol: string;
1328
- /** The current state of the connection */
1329
- readonly readyState: typeof WebSocket.CONNECTING | typeof WebSocket.OPEN | typeof WebSocket.CLOSING | typeof WebSocket.CLOSED;
1330
- readonly url: string;
1331
- /** The connection is not yet open. */
1332
- readonly CONNECTING: 0;
1333
- /** The connection is open and ready to communicate. */
1334
- readonly OPEN: 1;
1335
- /** The connection is in the process of closing. */
1336
- readonly CLOSING: 2;
1337
- /** The connection is closed. */
1338
- readonly CLOSED: 3;
1339
- onopen: ((event: WebSocket.Event) => void) | null;
1340
- onerror: ((event: WebSocket.ErrorEvent) => void) | null;
1341
- onclose: ((event: WebSocket.CloseEvent) => void) | null;
1342
- onmessage: ((event: WebSocket.MessageEvent) => void) | null;
1343
- constructor(address: null);
1344
- constructor(address: string | url_URL, options?: WebSocket.ClientOptions | ClientRequestArgs);
1345
- constructor(address: string | url_URL, protocols?: string | string[], options?: WebSocket.ClientOptions | ClientRequestArgs);
1346
- close(code?: number, data?: string | Buffer): void;
1347
- ping(data?: any, mask?: boolean, cb?: (err: Error) => void): void;
1348
- pong(data?: any, mask?: boolean, cb?: (err: Error) => void): void;
1349
- send(data: any, cb?: (err?: Error) => void): void;
1350
- send(data: any, options: {
1351
- mask?: boolean | undefined;
1352
- binary?: boolean | undefined;
1353
- compress?: boolean | undefined;
1354
- fin?: boolean | undefined;
1355
- }, cb?: (err?: Error) => void): void;
1356
- terminate(): void;
1357
- /**
1358
- * Pause the websocket causing it to stop emitting events. Some events can still be
1359
- * emitted after this is called, until all buffered data is consumed. This method
1360
- * is a noop if the ready state is `CONNECTING` or `CLOSED`.
1361
- */
1362
- pause(): void;
1363
- /**
1364
- * Make a paused socket resume emitting events. This method is a noop if the ready
1365
- * state is `CONNECTING` or `CLOSED`.
1366
- */
1367
- resume(): void;
1368
- // HTML5 WebSocket events
1369
- addEventListener(method: 'message', cb: (event: WebSocket.MessageEvent) => void, options?: WebSocket.EventListenerOptions): void;
1370
- addEventListener(method: 'close', cb: (event: WebSocket.CloseEvent) => void, options?: WebSocket.EventListenerOptions): void;
1371
- addEventListener(method: 'error', cb: (event: WebSocket.ErrorEvent) => void, options?: WebSocket.EventListenerOptions): void;
1372
- addEventListener(method: 'open', cb: (event: WebSocket.Event) => void, options?: WebSocket.EventListenerOptions): void;
1373
- removeEventListener(method: 'message', cb: (event: WebSocket.MessageEvent) => void): void;
1374
- removeEventListener(method: 'close', cb: (event: WebSocket.CloseEvent) => void): void;
1375
- removeEventListener(method: 'error', cb: (event: WebSocket.ErrorEvent) => void): void;
1376
- removeEventListener(method: 'open', cb: (event: WebSocket.Event) => void): void;
1377
- // Events
1378
- on(event: 'close', listener: (this: WebSocket, code: number, reason: Buffer) => void): this;
1379
- on(event: 'error', listener: (this: WebSocket, err: Error) => void): this;
1380
- on(event: 'upgrade', listener: (this: WebSocket, request: http.IncomingMessage) => void): this;
1381
- on(event: 'message', listener: (this: WebSocket, data: WebSocket.RawData, isBinary: boolean) => void): this;
1382
- on(event: 'open', listener: (this: WebSocket) => void): this;
1383
- on(event: 'ping' | 'pong', listener: (this: WebSocket, data: Buffer) => void): this;
1384
- on(event: 'unexpected-response', listener: (this: WebSocket, request: ClientRequest, response: http.IncomingMessage) => void): this;
1385
- on(event: string | symbol, listener: (this: WebSocket, ...args: any[]) => void): this;
1386
- once(event: 'close', listener: (this: WebSocket, code: number, reason: Buffer) => void): this;
1387
- once(event: 'error', listener: (this: WebSocket, err: Error) => void): this;
1388
- once(event: 'upgrade', listener: (this: WebSocket, request: http.IncomingMessage) => void): this;
1389
- once(event: 'message', listener: (this: WebSocket, data: WebSocket.RawData, isBinary: boolean) => void): this;
1390
- once(event: 'open', listener: (this: WebSocket) => void): this;
1391
- once(event: 'ping' | 'pong', listener: (this: WebSocket, data: Buffer) => void): this;
1392
- once(event: 'unexpected-response', listener: (this: WebSocket, request: ClientRequest, response: http.IncomingMessage) => void): this;
1393
- once(event: string | symbol, listener: (this: WebSocket, ...args: any[]) => void): this;
1394
- off(event: 'close', listener: (this: WebSocket, code: number, reason: Buffer) => void): this;
1395
- off(event: 'error', listener: (this: WebSocket, err: Error) => void): this;
1396
- off(event: 'upgrade', listener: (this: WebSocket, request: http.IncomingMessage) => void): this;
1397
- off(event: 'message', listener: (this: WebSocket, data: WebSocket.RawData, isBinary: boolean) => void): this;
1398
- off(event: 'open', listener: (this: WebSocket) => void): this;
1399
- off(event: 'ping' | 'pong', listener: (this: WebSocket, data: Buffer) => void): this;
1400
- off(event: 'unexpected-response', listener: (this: WebSocket, request: ClientRequest, response: http.IncomingMessage) => void): this;
1401
- off(event: string | symbol, listener: (this: WebSocket, ...args: any[]) => void): this;
1402
- addListener(event: 'close', listener: (code: number, reason: Buffer) => void): this;
1403
- addListener(event: 'error', listener: (err: Error) => void): this;
1404
- addListener(event: 'upgrade', listener: (request: http.IncomingMessage) => void): this;
1405
- addListener(event: 'message', listener: (data: WebSocket.RawData, isBinary: boolean) => void): this;
1406
- addListener(event: 'open', listener: () => void): this;
1444
+ //#region src/node/server/pluginContainer.d.ts
1445
+ type SkipInformation = {
1446
+ id: string;
1447
+ importer: string | undefined;
1448
+ plugin: Plugin;
1449
+ called?: boolean;
1450
+ };
1451
+ declare class EnvironmentPluginContainer<Env extends Environment = Environment> {
1452
+ private _pluginContextMap;
1453
+ private _resolvedRolldownOptions?;
1454
+ private _processesing;
1455
+ private _seenResolves;
1456
+ private _moduleNodeToLoadAddedImports;
1457
+ getSortedPluginHooks: PluginHookUtils["getSortedPluginHooks"];
1458
+ getSortedPlugins: PluginHookUtils["getSortedPlugins"];
1459
+ moduleGraph: EnvironmentModuleGraph | undefined;
1460
+ watchFiles: Set<string>;
1461
+ minimalContext: MinimalPluginContext$1<Env>;
1462
+ private _started;
1463
+ private _buildStartPromise;
1464
+ private _closed;
1465
+ private _updateModuleLoadAddedImports;
1466
+ private _getAddedImports;
1467
+ getModuleInfo(id: string): ModuleInfo | null;
1468
+ private handleHookPromise;
1469
+ get options(): InputOptions;
1470
+ resolveRolldownOptions(): Promise<InputOptions>;
1471
+ private _getPluginContext;
1472
+ private hookParallel;
1473
+ buildStart(_options?: InputOptions): Promise<void>;
1474
+ resolveId(rawId: string, importer?: string | undefined, options?: {
1475
+ kind?: ImportKind;
1476
+ attributes?: Record<string, string>;
1477
+ custom?: CustomPluginOptions;
1478
+ /** @deprecated use `skipCalls` instead */
1479
+ skip?: Set<Plugin>;
1480
+ skipCalls?: readonly SkipInformation[];
1481
+
1482
+ isEntry?: boolean;
1483
+ }): Promise<PartialResolvedId | null>;
1484
+ load(id: string): Promise<LoadResult | null>;
1485
+ transform(code: string, id: string, options?: {
1486
+ inMap?: SourceDescription["map"];
1487
+ moduleType?: string;
1488
+ }): Promise<{
1489
+ code: string;
1490
+ map: SourceMap | {
1491
+ mappings: "";
1492
+ } | null;
1493
+ moduleType?: ModuleType;
1494
+ }>;
1495
+ watchChange(id: string, change: {
1496
+ event: "create" | "update" | "delete";
1497
+ }): Promise<void>;
1498
+ close(): Promise<void>;
1499
+ }
1500
+ declare class BasicMinimalPluginContext<Meta = PluginContextMeta> {
1501
+ meta: Meta;
1502
+ private _logger;
1503
+ constructor(meta: Meta, _logger: Logger);
1504
+ get pluginName(): string;
1505
+ debug(rawLog: string | RollupLog | (() => string | RollupLog)): void;
1506
+ info(rawLog: string | RollupLog | (() => string | RollupLog)): void;
1507
+ warn(rawLog: string | RollupLog | (() => string | RollupLog)): void;
1508
+ error(e: string | RollupError): never;
1509
+ private _normalizeRawLog;
1510
+ }
1511
+ declare class MinimalPluginContext$1<T extends Environment = Environment> extends BasicMinimalPluginContext implements MinimalPluginContext {
1512
+ environment: T;
1513
+ constructor(meta: PluginContextMeta, environment: T);
1514
+ }
1515
+ declare class PluginContainer {
1516
+ private environments;
1517
+ constructor(environments: Record<string, Environment>);
1518
+ private _getEnvironment;
1519
+ private _getPluginContainer;
1520
+ getModuleInfo(id: string): ModuleInfo | null;
1521
+ get options(): InputOptions;
1522
+ buildStart(_options?: InputOptions): Promise<void>;
1523
+ watchChange(id: string, change: {
1524
+ event: "create" | "update" | "delete";
1525
+ }): Promise<void>;
1526
+ resolveId(rawId: string, importer?: string, options?: {
1527
+ attributes?: Record<string, string>;
1528
+ custom?: CustomPluginOptions;
1529
+ /** @deprecated use `skipCalls` instead */
1530
+ skip?: Set<Plugin>;
1531
+ skipCalls?: readonly SkipInformation[];
1532
+ ssr?: boolean;
1533
+
1534
+ isEntry?: boolean;
1535
+ }): Promise<PartialResolvedId | null>;
1536
+ load(id: string, options?: {
1537
+ ssr?: boolean;
1538
+ }): Promise<LoadResult | null>;
1539
+ transform(code: string, id: string, options?: {
1540
+ ssr?: boolean;
1541
+ environment?: Environment;
1542
+ inMap?: SourceDescription["map"];
1543
+ }): Promise<{
1544
+ code: string;
1545
+ map: SourceMap | {
1546
+ mappings: "";
1547
+ } | null;
1548
+ }>;
1549
+ close(): Promise<void>;
1550
+ }
1551
+ //#endregion
1552
+ //#region src/types/ws.d.ts
1553
+ // WebSocket socket.
1554
+ declare class WebSocket extends EventEmitter {
1555
+ /** The connection is not yet open. */
1556
+ static readonly CONNECTING: 0;
1557
+ /** The connection is open and ready to communicate. */
1558
+ static readonly OPEN: 1;
1559
+ /** The connection is in the process of closing. */
1560
+ static readonly CLOSING: 2;
1561
+ /** The connection is closed. */
1562
+ static readonly CLOSED: 3;
1563
+ binaryType: 'nodebuffer' | 'arraybuffer' | 'fragments';
1564
+ readonly bufferedAmount: number;
1565
+ readonly extensions: string;
1566
+ /** Indicates whether the websocket is paused */
1567
+ readonly isPaused: boolean;
1568
+ readonly protocol: string;
1569
+ /** The current state of the connection */
1570
+ readonly readyState: typeof WebSocket.CONNECTING | typeof WebSocket.OPEN | typeof WebSocket.CLOSING | typeof WebSocket.CLOSED;
1571
+ readonly url: string;
1572
+ /** The connection is not yet open. */
1573
+ readonly CONNECTING: 0;
1574
+ /** The connection is open and ready to communicate. */
1575
+ readonly OPEN: 1;
1576
+ /** The connection is in the process of closing. */
1577
+ readonly CLOSING: 2;
1578
+ /** The connection is closed. */
1579
+ readonly CLOSED: 3;
1580
+ onopen: ((event: WebSocket.Event) => void) | null;
1581
+ onerror: ((event: WebSocket.ErrorEvent) => void) | null;
1582
+ onclose: ((event: WebSocket.CloseEvent) => void) | null;
1583
+ onmessage: ((event: WebSocket.MessageEvent) => void) | null;
1584
+ constructor(address: null);
1585
+ constructor(address: string | url_URL, options?: WebSocket.ClientOptions | ClientRequestArgs);
1586
+ constructor(address: string | url_URL, protocols?: string | string[], options?: WebSocket.ClientOptions | ClientRequestArgs);
1587
+ close(code?: number, data?: string | Buffer): void;
1588
+ ping(data?: any, mask?: boolean, cb?: (err: Error) => void): void;
1589
+ pong(data?: any, mask?: boolean, cb?: (err: Error) => void): void;
1590
+ send(data: any, cb?: (err?: Error) => void): void;
1591
+ send(data: any, options: {
1592
+ mask?: boolean | undefined;
1593
+ binary?: boolean | undefined;
1594
+ compress?: boolean | undefined;
1595
+ fin?: boolean | undefined;
1596
+ }, cb?: (err?: Error) => void): void;
1597
+ terminate(): void;
1598
+ /**
1599
+ * Pause the websocket causing it to stop emitting events. Some events can still be
1600
+ * emitted after this is called, until all buffered data is consumed. This method
1601
+ * is a noop if the ready state is `CONNECTING` or `CLOSED`.
1602
+ */
1603
+ pause(): void;
1604
+ /**
1605
+ * Make a paused socket resume emitting events. This method is a noop if the ready
1606
+ * state is `CONNECTING` or `CLOSED`.
1607
+ */
1608
+ resume(): void;
1609
+ // HTML5 WebSocket events
1610
+ addEventListener(method: 'message', cb: (event: WebSocket.MessageEvent) => void, options?: WebSocket.EventListenerOptions): void;
1611
+ addEventListener(method: 'close', cb: (event: WebSocket.CloseEvent) => void, options?: WebSocket.EventListenerOptions): void;
1612
+ addEventListener(method: 'error', cb: (event: WebSocket.ErrorEvent) => void, options?: WebSocket.EventListenerOptions): void;
1613
+ addEventListener(method: 'open', cb: (event: WebSocket.Event) => void, options?: WebSocket.EventListenerOptions): void;
1614
+ removeEventListener(method: 'message', cb: (event: WebSocket.MessageEvent) => void): void;
1615
+ removeEventListener(method: 'close', cb: (event: WebSocket.CloseEvent) => void): void;
1616
+ removeEventListener(method: 'error', cb: (event: WebSocket.ErrorEvent) => void): void;
1617
+ removeEventListener(method: 'open', cb: (event: WebSocket.Event) => void): void;
1618
+ // Events
1619
+ on(event: 'close', listener: (this: WebSocket, code: number, reason: Buffer) => void): this;
1620
+ on(event: 'error', listener: (this: WebSocket, err: Error) => void): this;
1621
+ on(event: 'upgrade', listener: (this: WebSocket, request: http.IncomingMessage) => void): this;
1622
+ on(event: 'message', listener: (this: WebSocket, data: WebSocket.RawData, isBinary: boolean) => void): this;
1623
+ on(event: 'open', listener: (this: WebSocket) => void): this;
1624
+ on(event: 'ping' | 'pong', listener: (this: WebSocket, data: Buffer) => void): this;
1625
+ on(event: 'unexpected-response', listener: (this: WebSocket, request: ClientRequest, response: http.IncomingMessage) => void): this;
1626
+ on(event: string | symbol, listener: (this: WebSocket, ...args: any[]) => void): this;
1627
+ once(event: 'close', listener: (this: WebSocket, code: number, reason: Buffer) => void): this;
1628
+ once(event: 'error', listener: (this: WebSocket, err: Error) => void): this;
1629
+ once(event: 'upgrade', listener: (this: WebSocket, request: http.IncomingMessage) => void): this;
1630
+ once(event: 'message', listener: (this: WebSocket, data: WebSocket.RawData, isBinary: boolean) => void): this;
1631
+ once(event: 'open', listener: (this: WebSocket) => void): this;
1632
+ once(event: 'ping' | 'pong', listener: (this: WebSocket, data: Buffer) => void): this;
1633
+ once(event: 'unexpected-response', listener: (this: WebSocket, request: ClientRequest, response: http.IncomingMessage) => void): this;
1634
+ once(event: string | symbol, listener: (this: WebSocket, ...args: any[]) => void): this;
1635
+ off(event: 'close', listener: (this: WebSocket, code: number, reason: Buffer) => void): this;
1636
+ off(event: 'error', listener: (this: WebSocket, err: Error) => void): this;
1637
+ off(event: 'upgrade', listener: (this: WebSocket, request: http.IncomingMessage) => void): this;
1638
+ off(event: 'message', listener: (this: WebSocket, data: WebSocket.RawData, isBinary: boolean) => void): this;
1639
+ off(event: 'open', listener: (this: WebSocket) => void): this;
1640
+ off(event: 'ping' | 'pong', listener: (this: WebSocket, data: Buffer) => void): this;
1641
+ off(event: 'unexpected-response', listener: (this: WebSocket, request: ClientRequest, response: http.IncomingMessage) => void): this;
1642
+ off(event: string | symbol, listener: (this: WebSocket, ...args: any[]) => void): this;
1643
+ addListener(event: 'close', listener: (code: number, reason: Buffer) => void): this;
1644
+ addListener(event: 'error', listener: (err: Error) => void): this;
1645
+ addListener(event: 'upgrade', listener: (request: http.IncomingMessage) => void): this;
1646
+ addListener(event: 'message', listener: (data: WebSocket.RawData, isBinary: boolean) => void): this;
1647
+ addListener(event: 'open', listener: () => void): this;
1407
1648
  addListener(event: 'ping' | 'pong', listener: (data: Buffer) => void): this;
1408
1649
  addListener(event: 'unexpected-response', listener: (request: ClientRequest, response: http.IncomingMessage) => void): this;
1409
1650
  addListener(event: string | symbol, listener: (...args: any[]) => void): this;
@@ -1620,58 +1861,6 @@ interface WebSocketClient extends NormalizedHotChannelClient {
1620
1861
  socket: WebSocket;
1621
1862
  }
1622
1863
  //#endregion
1623
- //#region src/node/server/bundledDev.d.ts
1624
- type MemoryFile = {
1625
- source: string | Uint8Array;
1626
- etag?: string;
1627
- };
1628
- declare class MemoryFiles {
1629
- private files;
1630
- get size(): number;
1631
- get(file: string): MemoryFile | undefined;
1632
- set(file: string, content: MemoryFile | (() => MemoryFile)): void;
1633
- has(file: string): boolean;
1634
- clear(): void;
1635
- }
1636
- declare class BundledDev {
1637
- private environment;
1638
- private _devEngine;
1639
- private viteRuntime?;
1640
- private initialBuildCompleted;
1641
- private _closed;
1642
- private clients;
1643
- private debouncedFullReload;
1644
- private fullReloadPending;
1645
- private reloadNeededClientIds;
1646
- private debouncedReloadNeededFlush;
1647
- private lastBuildError;
1648
- memoryFiles: MemoryFiles;
1649
- constructor(environment: DevEnvironment);
1650
- private get devEngine();
1651
- private pendingPayloadFilenames;
1652
- get hasBuildOutput(): boolean;
1653
- listen(): Promise<void>;
1654
- private waitForInitialBuildFinish;
1655
- private ensureOutputAndFlushReloadNeeded;
1656
- triggerBundleRegenerationIfStale(): Promise<boolean>;
1657
- triggerLazyBundling(moduleId: string | null, clientId: string | null): Promise<{
1658
- code: string;
1659
- filename: string;
1660
- } | undefined>;
1661
- /**
1662
- * Called by the serving middlewares when the response for a payload completed.
1663
- * Only delivered payloads are recorded on the server's per-client ship map, so
1664
- * later chunks may omit a module only if the payload carrying it was delivered.
1665
- *
1666
- * Note: the payload filename is unique across all clients.
1667
- */
1668
- markPayloadDelivered(filename: string): void;
1669
- close(): Promise<void>;
1670
- private storeOutputFiles;
1671
- private getRolldownOptions;
1672
- private handleHmrOutput;
1673
- }
1674
- //#endregion
1675
1864
  //#region src/node/server/environment.d.ts
1676
1865
  interface DevEnvironmentContext {
1677
1866
  hot: boolean;
@@ -1740,799 +1929,427 @@ export declare class DevEnvironment extends BaseEnvironment {
1740
1929
  waitForRequestsIdle(ignoredId?: string): Promise<void>;
1741
1930
  }
1742
1931
  //#endregion
1743
- //#region src/types/commonjs.d.ts
1744
-
1745
- interface RollupCommonJSOptions {
1746
- /**
1747
- * A minimatch pattern, or array of patterns, which specifies the files in
1748
- * the build the plugin should operate on. By default, all files with
1749
- * extension `".cjs"` or those in `extensions` are included, but you can
1750
- * narrow this list by only including specific files. These files will be
1751
- * analyzed and transpiled if either the analysis does not find ES module
1752
- * specific statements or `transformMixedEsModules` is `true`.
1753
- * @default undefined
1754
- */
1755
- include?: string | RegExp | readonly (string | RegExp)[];
1932
+ //#region src/node/optimizer/scan.d.ts
1933
+ declare class ScanEnvironment extends BaseEnvironment {
1934
+ mode: "scan";
1935
+ get pluginContainer(): EnvironmentPluginContainer;
1936
+ init(): Promise<void>;
1937
+ }
1938
+ //#endregion
1939
+ //#region src/node/environment.d.ts
1940
+ type Environment = DevEnvironment | BuildEnvironment | ScanEnvironment | UnknownEnvironment;
1941
+ /**
1942
+ * Creates a function that hides the complexities of a WeakMap with an initial value
1943
+ * to implement object metadata. Used by plugins to implement cross hooks per
1944
+ * environment metadata
1945
+ *
1946
+ * @experimental
1947
+ */
1948
+ export declare function perEnvironmentState<State>(initial: (environment: Environment) => State): (context: PluginContext) => State;
1949
+ //#endregion
1950
+ //#region src/node/plugins/html.d.ts
1951
+ interface HtmlTagDescriptor {
1952
+ tag: string;
1756
1953
  /**
1757
- * A minimatch pattern, or array of patterns, which specifies the files in
1758
- * the build the plugin should _ignore_. By default, all files with
1759
- * extensions other than those in `extensions` or `".cjs"` are ignored, but you
1760
- * can exclude additional files. See also the `include` option.
1761
- * @default undefined
1954
+ * attribute values will be escaped automatically if needed
1762
1955
  */
1763
- exclude?: string | RegExp | readonly (string | RegExp)[];
1956
+ attrs?: Record<string, string | boolean | undefined>;
1957
+ children?: string | HtmlTagDescriptor[];
1764
1958
  /**
1765
- * For extensionless imports, search for extensions other than .js in the
1766
- * order specified. Note that you need to make sure that non-JavaScript files
1767
- * are transpiled by another plugin first.
1768
- * @default [ '.js' ]
1959
+ * default: 'head-prepend'
1769
1960
  */
1770
- extensions?: ReadonlyArray<string>;
1961
+ injectTo?: "head" | "body" | "head-prepend" | "body-prepend";
1962
+ }
1963
+ type IndexHtmlTransformResult = string | HtmlTagDescriptor[] | {
1964
+ html: string;
1965
+ tags: HtmlTagDescriptor[];
1966
+ };
1967
+ interface IndexHtmlTransformContext {
1771
1968
  /**
1772
- * If true then uses of `global` won't be dealt with by this plugin
1773
- * @default false
1969
+ * public path when served
1774
1970
  */
1775
- ignoreGlobal?: boolean;
1971
+ path: string;
1776
1972
  /**
1777
- * If false, skips source map generation for CommonJS modules. This will
1778
- * improve performance.
1779
- * @default true
1973
+ * filename on disk
1780
1974
  */
1781
- sourceMap?: boolean;
1975
+ filename: string;
1976
+ server?: ViteDevServer;
1977
+ bundle?: OutputBundle;
1978
+ chunk?: OutputChunk;
1979
+ originalUrl?: string;
1980
+ }
1981
+ type IndexHtmlTransformHook = (this: MinimalPluginContextWithoutEnvironment, html: string, ctx: IndexHtmlTransformContext) => IndexHtmlTransformResult | void | Promise<IndexHtmlTransformResult | void>;
1982
+ type IndexHtmlTransform = IndexHtmlTransformHook | {
1983
+ order?: "pre" | "post" | null;
1984
+ handler: IndexHtmlTransformHook;
1985
+ };
1986
+ //#endregion
1987
+ //#region src/node/plugins/pluginFilter.d.ts
1988
+ type StringFilter<Value = string | RegExp> = Value | Array<Value> | {
1989
+ include?: Value | Array<Value>;
1990
+ exclude?: Value | Array<Value>;
1991
+ };
1992
+ //#endregion
1993
+ //#region src/node/shortcuts.d.ts
1994
+ type BindCLIShortcutsOptions<Server = ViteDevServer | PreviewServer> = {
1782
1995
  /**
1783
- * Some `require` calls cannot be resolved statically to be translated to
1784
- * imports.
1785
- * When this option is set to `false`, the generated code will either
1786
- * directly throw an error when such a call is encountered or, when
1787
- * `dynamicRequireTargets` is used, when such a call cannot be resolved with a
1788
- * configured dynamic require target.
1789
- * Setting this option to `true` will instead leave the `require` call in the
1790
- * code or use it as a fallback for `dynamicRequireTargets`.
1791
- * @default false
1996
+ * Print a one-line shortcuts "help" hint to the terminal
1792
1997
  */
1793
- ignoreDynamicRequires?: boolean;
1998
+ print?: boolean;
1794
1999
  /**
1795
- * Instructs the plugin whether to enable mixed module transformations. This
1796
- * is useful in scenarios with modules that contain a mix of ES `import`
1797
- * statements and CommonJS `require` expressions. Set to `true` if `require`
1798
- * calls should be transformed to imports in mixed modules, or `false` if the
1799
- * `require` expressions should survive the transformation. The latter can be
1800
- * important if the code contains environment detection, or you are coding
1801
- * for an environment with special treatment for `require` calls such as
1802
- * ElectronJS. See also the `ignore` option.
1803
- * @default false
2000
+ * Custom shortcuts to run when a key is pressed. These shortcuts take priority
2001
+ * over the default shortcuts if they have the same keys (except the `h` key).
2002
+ * To disable a default shortcut, define the same key but with `action: undefined`.
1804
2003
  */
1805
- transformMixedEsModules?: boolean;
2004
+ customShortcuts?: CLIShortcut<Server>[];
2005
+ };
2006
+ type CLIShortcut<Server = ViteDevServer | PreviewServer> = {
2007
+ key: string;
2008
+ description: string;
2009
+ action?(server: Server): void | Promise<void>;
2010
+ };
2011
+ //#endregion
2012
+ //#region src/node/typeUtils.d.ts
2013
+ type RequiredExceptFor<T, K extends keyof T> = Pick<T, K> & Required<Omit<T, K>>;
2014
+ //#endregion
2015
+ //#region src/node/preview.d.ts
2016
+ interface PreviewOptions extends CommonServerOptions {}
2017
+ interface ResolvedPreviewOptions extends RequiredExceptFor<PreviewOptions, "host" | "https" | "proxy"> {}
2018
+ interface PreviewServer {
1806
2019
  /**
1807
- * By default, this plugin will try to hoist `require` statements as imports
1808
- * to the top of each file. While this works well for many code bases and
1809
- * allows for very efficient ESM output, it does not perfectly capture
1810
- * CommonJS semantics as the order of side effects like log statements may
1811
- * change. But it is especially problematic when there are circular `require`
1812
- * calls between CommonJS modules as those often rely on the lazy execution of
1813
- * nested `require` calls.
1814
- *
1815
- * Setting this option to `true` will wrap all CommonJS files in functions
1816
- * which are executed when they are required for the first time, preserving
1817
- * NodeJS semantics. Note that this can have an impact on the size and
1818
- * performance of the generated code.
1819
- *
1820
- * The default value of `"auto"` will only wrap CommonJS files when they are
1821
- * part of a CommonJS dependency cycle, e.g. an index file that is required by
1822
- * many of its dependencies. All other CommonJS files are hoisted. This is the
1823
- * recommended setting for most code bases.
1824
- *
1825
- * `false` will entirely prevent wrapping and hoist all files. This may still
1826
- * work depending on the nature of cyclic dependencies but will often cause
1827
- * problems.
1828
- *
1829
- * You can also provide a minimatch pattern, or array of patterns, to only
1830
- * specify a subset of files which should be wrapped in functions for proper
1831
- * `require` semantics.
1832
- *
1833
- * `"debug"` works like `"auto"` but after bundling, it will display a warning
1834
- * containing a list of ids that have been wrapped which can be used as
1835
- * minimatch pattern for fine-tuning.
1836
- * @default "auto"
2020
+ * The resolved vite config object
1837
2021
  */
1838
- strictRequires?: boolean | string | RegExp | readonly (string | RegExp)[];
2022
+ config: ResolvedConfig;
1839
2023
  /**
1840
- * Sometimes you have to leave require statements unconverted. Pass an array
1841
- * containing the IDs or a `id => boolean` function.
1842
- * @default []
2024
+ * Stop the server.
1843
2025
  */
1844
- ignore?: ReadonlyArray<string> | ((id: string) => boolean);
2026
+ close(): Promise<void>;
1845
2027
  /**
1846
- * In most cases, where `require` calls are inside a `try-catch` clause,
1847
- * they should be left unconverted as it requires an optional dependency
1848
- * that may or may not be installed beside the rolled up package.
1849
- * Due to the conversion of `require` to a static `import` - the call is
1850
- * hoisted to the top of the file, outside the `try-catch` clause.
1851
- *
1852
- * - `true`: Default. All `require` calls inside a `try` will be left unconverted.
1853
- * - `false`: All `require` calls inside a `try` will be converted as if the
1854
- * `try-catch` clause is not there.
1855
- * - `remove`: Remove all `require` calls from inside any `try` block.
1856
- * - `string[]`: Pass an array containing the IDs to left unconverted.
1857
- * - `((id: string) => boolean|'remove')`: Pass a function that controls
1858
- * individual IDs.
2028
+ * A connect app instance.
2029
+ * - Can be used to attach custom middlewares to the preview server.
2030
+ * - Can also be used as the handler function of a custom http server
2031
+ * or as a middleware in any connect-style Node.js frameworks
1859
2032
  *
1860
- * @default true
2033
+ * https://github.com/senchalabs/connect#use-middleware
1861
2034
  */
1862
- ignoreTryCatch?: boolean | 'remove' | ReadonlyArray<string> | ((id: string) => boolean | 'remove');
2035
+ middlewares: Connect.Server;
1863
2036
  /**
1864
- * Controls how to render imports from external dependencies. By default,
1865
- * this plugin assumes that all external dependencies are CommonJS. This
1866
- * means they are rendered as default imports to be compatible with e.g.
1867
- * NodeJS where ES modules can only import a default export from a CommonJS
1868
- * dependency.
1869
- *
1870
- * If you set `esmExternals` to `true`, this plugin assumes that all
1871
- * external dependencies are ES modules and respect the
1872
- * `requireReturnsDefault` option. If that option is not set, they will be
1873
- * rendered as namespace imports.
1874
- *
1875
- * You can also supply an array of ids to be treated as ES modules, or a
1876
- * function that will be passed each external id to determine whether it is
1877
- * an ES module.
1878
- * @default false
2037
+ * native Node http server instance
1879
2038
  */
1880
- esmExternals?: boolean | ReadonlyArray<string> | ((id: string) => boolean);
2039
+ httpServer: HttpServer;
1881
2040
  /**
1882
- * Controls what is returned when requiring an ES module from a CommonJS file.
1883
- * When using the `esmExternals` option, this will also apply to external
1884
- * modules. By default, this plugin will render those imports as namespace
1885
- * imports i.e.
1886
- *
1887
- * ```js
1888
- * // input
1889
- * const foo = require('foo');
1890
- *
1891
- * // output
1892
- * import * as foo from 'foo';
1893
- * ```
1894
- *
1895
- * However, there are some situations where this may not be desired.
1896
- * For these situations, you can change Rollup's behaviour either globally or
1897
- * per module. To change it globally, set the `requireReturnsDefault` option
1898
- * to one of the following values:
1899
- *
1900
- * - `false`: This is the default, requiring an ES module returns its
1901
- * namespace. This is the only option that will also add a marker
1902
- * `__esModule: true` to the namespace to support interop patterns in
1903
- * CommonJS modules that are transpiled ES modules.
1904
- * - `"namespace"`: Like `false`, requiring an ES module returns its
1905
- * namespace, but the plugin does not add the `__esModule` marker and thus
1906
- * creates more efficient code. For external dependencies when using
1907
- * `esmExternals: true`, no additional interop code is generated.
1908
- * - `"auto"`: This is complementary to how `output.exports: "auto"` works in
1909
- * Rollup: If a module has a default export and no named exports, requiring
1910
- * that module returns the default export. In all other cases, the namespace
1911
- * is returned. For external dependencies when using `esmExternals: true`, a
1912
- * corresponding interop helper is added.
1913
- * - `"preferred"`: If a module has a default export, requiring that module
1914
- * always returns the default export, no matter whether additional named
1915
- * exports exist. This is similar to how previous versions of this plugin
1916
- * worked. Again for external dependencies when using `esmExternals: true`,
1917
- * an interop helper is added.
1918
- * - `true`: This will always try to return the default export on require
1919
- * without checking if it actually exists. This can throw at build time if
1920
- * there is no default export. This is how external dependencies are handled
1921
- * when `esmExternals` is not used. The advantage over the other options is
1922
- * that, like `false`, this does not add an interop helper for external
1923
- * dependencies, keeping the code lean.
1924
- *
1925
- * To change this for individual modules, you can supply a function for
1926
- * `requireReturnsDefault` instead. This function will then be called once for
1927
- * each required ES module or external dependency with the corresponding id
1928
- * and allows you to return different values for different modules.
1929
- * @default false
2041
+ * The resolved urls Vite prints on the CLI (URL-encoded). Returns `null`
2042
+ * if the server is not listening on any port.
1930
2043
  */
1931
- requireReturnsDefault?: boolean | 'auto' | 'preferred' | 'namespace' | ((id: string) => boolean | 'auto' | 'preferred' | 'namespace');
2044
+ resolvedUrls: ResolvedServerUrls | null;
1932
2045
  /**
1933
- * @default "auto"
2046
+ * Print server urls
1934
2047
  */
1935
- defaultIsModuleExports?: boolean | 'auto' | ((id: string) => boolean | 'auto');
1936
- /**
1937
- * Some modules contain dynamic `require` calls, or require modules that
1938
- * contain circular dependencies, which are not handled well by static
1939
- * imports. Including those modules as `dynamicRequireTargets` will simulate a
1940
- * CommonJS (NodeJS-like) environment for them with support for dynamic
1941
- * dependencies. It also enables `strictRequires` for those modules.
1942
- *
1943
- * Note: In extreme cases, this feature may result in some paths being
1944
- * rendered as absolute in the final bundle. The plugin tries to avoid
1945
- * exposing paths from the local machine, but if you are `dynamicRequirePaths`
1946
- * with paths that are far away from your project's folder, that may require
1947
- * replacing strings like `"/Users/John/Desktop/foo-project/"` -\> `"/"`.
1948
- */
1949
- dynamicRequireTargets?: string | ReadonlyArray<string>;
2048
+ printUrls(): void;
1950
2049
  /**
1951
- * To avoid long paths when using the `dynamicRequireTargets` option, you can use this option to specify a directory
1952
- * that is a common parent for all files that use dynamic require statements. Using a directory higher up such as `/`
1953
- * may lead to unnecessarily long paths in the generated code and may expose directory names on your machine like your
1954
- * home directory name. By default, it uses the current working directory.
2050
+ * Bind CLI shortcuts
1955
2051
  */
1956
- dynamicRequireRoot?: string;
2052
+ bindCLIShortcuts(options?: BindCLIShortcutsOptions<PreviewServer>): void;
1957
2053
  }
2054
+ type PreviewServerHook = (this: MinimalPluginContextWithoutEnvironment, server: PreviewServer) => (() => void) | void | Promise<(() => void) | void>;
2055
+ type ClosePreviewServerHook = (this: MinimalPluginContextWithoutEnvironment) => void | Promise<void>;
2056
+ /**
2057
+ * Starts the Vite server in preview mode, to simulate a production deployment
2058
+ */
2059
+ export declare function preview(inlineConfig?: InlineConfig): Promise<PreviewServer>;
1958
2060
  //#endregion
1959
- //#region src/types/dynamicImportVars.d.ts
1960
- interface RollupDynamicImportVarsOptions {
1961
- /**
1962
- * Files to include in this plugin (default all).
1963
- * @default []
1964
- */
1965
- include?: string | RegExp | (string | RegExp)[];
1966
- /**
1967
- * Files to exclude in this plugin (default none).
1968
- * @default []
1969
- */
1970
- exclude?: string | RegExp | (string | RegExp)[];
2061
+ //#region src/node/plugin.d.ts
2062
+ /**
2063
+ * Vite plugins extends the Rollup plugin interface with a few extra
2064
+ * vite-specific options. A valid vite plugin is also a valid Rollup plugin.
2065
+ * On the contrary, a Rollup plugin may or may NOT be a valid vite universal
2066
+ * plugin, since some Rollup features do not make sense in an unbundled
2067
+ * dev server context. That said, as long as a rollup plugin doesn't have strong
2068
+ * coupling between its bundle phase and output phase hooks then it should
2069
+ * just work (that means, most of them).
2070
+ *
2071
+ * By default, the plugins are run during both serve and build. When a plugin
2072
+ * is applied during serve, it will only run **non output plugin hooks** (see
2073
+ * rollup type definition of {@link rollup#PluginHooks}). You can think of the
2074
+ * dev server as only running `const bundle = rollup.rollup()` but never calling
2075
+ * `bundle.generate()`.
2076
+ *
2077
+ * A plugin that expects to have different behavior depending on serve/build can
2078
+ * export a factory function that receives the command being run via options.
2079
+ *
2080
+ * If a plugin should be applied only for server or build, a function format
2081
+ * config file can be used to conditional determine the plugins to use.
2082
+ *
2083
+ * The current environment can be accessed from the context for the all non-global
2084
+ * hooks (it is not available in config, configResolved, configureServer, etc).
2085
+ * It can be a dev, build, or scan environment.
2086
+ * Plugins can use this.environment.mode === 'dev' to guard for dev specific APIs.
2087
+ */
2088
+ interface PluginContextExtension {
1971
2089
  /**
1972
- * @deprecated This option is no-op and will be removed in future versions.
2090
+ * Vite-specific environment instance
1973
2091
  */
1974
- warnOnError?: boolean;
2092
+ environment: Environment;
1975
2093
  }
1976
- //#endregion
1977
- //#region src/node/plugins/terser.d.ts
1978
- interface TerserOptions extends TerserMinifyOptions {
2094
+ interface PluginContextMetaExtension {
2095
+ viteVersion: string;
2096
+ }
2097
+ interface ConfigPluginContext extends Omit<MinimalPluginContext, "meta" | "environment"> {
2098
+ meta: Omit<PluginContextMeta, "watchMode">;
2099
+ }
2100
+ interface MinimalPluginContextWithoutEnvironment extends Omit<MinimalPluginContext, "environment"> {}
2101
+ declare module "rolldown" {
2102
+ interface MinimalPluginContext extends PluginContextExtension {}
2103
+ interface PluginContextMeta extends PluginContextMetaExtension {}
2104
+ }
2105
+ /**
2106
+ * There are two types of plugins in Vite. App plugins and environment plugins.
2107
+ * Environment Plugins are defined by a constructor function that will be called
2108
+ * once per each environment allowing users to have completely different plugins
2109
+ * for each of them. The constructor gets the resolved environment after the server
2110
+ * and builder has already been created simplifying config access and cache
2111
+ * management for environment specific plugins.
2112
+ * Environment Plugins are closer to regular rollup plugins. They can't define
2113
+ * app level hooks (like config, configResolved, configureServer, etc).
2114
+ */
2115
+ interface Plugin<A = any> extends Rolldown.Plugin<A> {
1979
2116
  /**
1980
- * Vite-specific option to specify the max number of workers to spawn
1981
- * when minifying files with terser.
2117
+ * Perform custom handling of HMR updates.
2118
+ * The handler receives an options containing changed filename, timestamp, a
2119
+ * list of modules affected by the file change, and the dev server instance.
1982
2120
  *
1983
- * @default number of CPUs minus 1
2121
+ * - The hook can return a filtered list of modules to narrow down the update.
2122
+ * e.g. for a Vue SFC, we can narrow down the part to update by comparing
2123
+ * the descriptors.
2124
+ *
2125
+ * - The hook can also return an empty array and then perform custom updates
2126
+ * by sending a custom hmr payload via environment.hot.send().
2127
+ *
2128
+ * - If the hook doesn't return a value, the hmr update will be performed as
2129
+ * normal.
1984
2130
  */
1985
- maxWorkers?: number;
1986
- }
1987
- //#endregion
1988
- //#region src/node/plugins/resolve.d.ts
1989
- interface EnvironmentResolveOptions {
2131
+ hotUpdate?: ObjectHook<(this: MinimalPluginContext & {
2132
+ environment: DevEnvironment;
2133
+ }, options: HotUpdateOptions) => Array<EnvironmentModuleNode> | void | Promise<Array<EnvironmentModuleNode> | void>>;
1990
2134
  /**
1991
- * @default ['browser', 'module', 'jsnext:main', 'jsnext']
2135
+ * extend hooks with ssr flag
1992
2136
  */
1993
- mainFields?: string[];
1994
- conditions?: string[];
1995
- externalConditions?: string[];
2137
+ resolveId?: ObjectHook<(this: PluginContext, source: string, importer: string | undefined, options: {
2138
+ kind?: ImportKind;
2139
+ custom?: CustomPluginOptions;
2140
+ ssr?: boolean | undefined;
2141
+
2142
+ isEntry: boolean;
2143
+ }) => Promise<ResolveIdResult> | ResolveIdResult, {
2144
+ filter?: {
2145
+ id?: StringFilter<RegExp>;
2146
+ };
2147
+ }>;
2148
+ load?: ObjectHook<(this: PluginContext, id: string, options?: {
2149
+ ssr?: boolean | undefined;
2150
+ }) => Promise<LoadResult> | LoadResult, {
2151
+ filter?: {
2152
+ id?: StringFilter;
2153
+ };
2154
+ }>;
2155
+ transform?: ObjectHook<(this: TransformPluginContext, code: string, id: string, options?: {
2156
+ moduleType: ModuleType;
2157
+ ssr?: boolean | undefined;
2158
+ }) => Promise<Rolldown.TransformResult> | Rolldown.TransformResult, {
2159
+ filter?: {
2160
+ id?: StringFilter;
2161
+ code?: StringFilter;
2162
+ moduleType?: ModuleTypeFilter;
2163
+ };
2164
+ }>;
1996
2165
  /**
1997
- * @default ['.mjs', '.js', '.mts', '.ts', '.jsx', '.tsx', '.json']
2166
+ * Opt-in this plugin into the shared plugins pipeline.
2167
+ * For backward-compatibility, plugins are re-recreated for each environment
2168
+ * during `vite build --app`
2169
+ * We have an opt-in per plugin, and a general `builder.sharedPlugins`
2170
+ * In a future major, we'll flip the default to be shared by default
2171
+ * @experimental
1998
2172
  */
1999
- extensions?: string[];
2000
- dedupe?: string[];
2173
+ sharedDuringBuild?: boolean;
2001
2174
  /**
2002
- * Prevent listed dependencies from being externalized and will get bundled in build.
2003
- * Only works in server environments for now. Previously this was `ssr.noExternal`.
2175
+ * Opt-in this plugin into per-environment buildStart and buildEnd during dev.
2176
+ * For backward-compatibility, the buildStart hook is called only once during
2177
+ * dev, for the client environment. Plugins can opt-in to be called
2178
+ * per-environment, aligning with the build hook behavior.
2004
2179
  * @experimental
2005
2180
  */
2006
- noExternal?: string | RegExp | (string | RegExp)[] | true;
2181
+ perEnvironmentStartEndDuringDev?: boolean;
2007
2182
  /**
2008
- * Externalize the given dependencies and their transitive dependencies.
2009
- * Only works in server environments for now. Previously this was `ssr.external`.
2183
+ * Opt-in this plugin into per-environment watchChange during dev.
2184
+ * For backward-compatibility, the watchChange hook is called only once during
2185
+ * dev, for the client environment. Plugins can opt-in to be called
2186
+ * per-environment, aligning with the watchChange hook behavior.
2010
2187
  * @experimental
2011
2188
  */
2012
- external?: string[] | true;
2189
+ perEnvironmentWatchChangeDuringDev?: boolean;
2013
2190
  /**
2014
- * Array of strings or regular expressions that indicate what modules are builtin for the environment.
2191
+ * Enforce plugin invocation tier similar to webpack loaders. Hooks ordering
2192
+ * is still subject to the `order` property in the hook object.
2193
+ *
2194
+ * Plugin invocation order:
2195
+ * - alias resolution
2196
+ * - `enforce: 'pre'` plugins
2197
+ * - vite core plugins
2198
+ * - normal plugins
2199
+ * - vite build plugins
2200
+ * - `enforce: 'post'` plugins
2201
+ * - vite build post plugins
2015
2202
  */
2016
- builtins?: (string | RegExp)[];
2017
- }
2018
- interface ResolveOptions extends EnvironmentResolveOptions {
2203
+ enforce?: "pre" | "post";
2019
2204
  /**
2020
- * @default false
2205
+ * Apply the plugin only for serve or build, or on certain conditions.
2021
2206
  */
2022
- preserveSymlinks?: boolean;
2207
+ apply?: "serve" | "build" | ((this: void, config: UserConfig, env: ConfigEnv) => boolean);
2023
2208
  /**
2024
- * Enable tsconfig paths resolution
2209
+ * Define environments where this plugin should be active
2210
+ * By default, the plugin is active in all environments
2211
+ * @experimental
2212
+ */
2213
+ applyToEnvironment?: (environment: PartialEnvironment) => boolean | Promise<boolean> | PluginOption;
2214
+ /**
2215
+ * Modify vite config before it's resolved. The hook can either mutate the
2216
+ * passed-in config directly, or return a partial config object that will be
2217
+ * deeply merged into existing config.
2025
2218
  *
2026
- * @default false
2219
+ * Note: User plugins are resolved before running this hook so injecting other
2220
+ * plugins inside the `config` hook will have no effect.
2027
2221
  */
2028
- tsconfigPaths?: boolean;
2029
- }
2030
- interface ResolvePluginOptions {
2031
- root: string;
2032
- isBuild: boolean;
2033
- isProduction: boolean;
2034
- packageCache?: PackageCache;
2222
+ config?: ObjectHook<(this: ConfigPluginContext, config: UserConfig, env: ConfigEnv) => Omit<UserConfig, "plugins"> | null | void | Promise<Omit<UserConfig, "plugins"> | null | void>>;
2035
2223
  /**
2036
- * src code mode also attempts the following:
2037
- * - resolving /xxx as URLs
2038
- * - resolving bare imports from optimized deps
2224
+ * Modify environment configs before it's resolved. The hook can either mutate the
2225
+ * passed-in environment config directly, or return a partial config object that will be
2226
+ * deeply merged into existing config.
2227
+ * This hook is called for each environment with a partially resolved environment config
2228
+ * that already accounts for the default environment config values set at the root level.
2229
+ * If plugins need to modify the config of a given environment, they should do it in this
2230
+ * hook instead of the config hook. Leaving the config hook only for modifying the root
2231
+ * default environment config.
2039
2232
  */
2040
- asSrc?: boolean;
2041
- tryIndex?: boolean;
2042
- tryPrefix?: string;
2043
- preferRelative?: boolean;
2044
- isRequire?: boolean;
2045
- scan?: boolean;
2233
+ configEnvironment?: ObjectHook<(this: ConfigPluginContext, name: string, config: EnvironmentOptions, env: ConfigEnv & {
2234
+ /**
2235
+ * Whether this environment is SSR environment and `ssr.target` is set to `'webworker'`.
2236
+ * Only intended to be used for backward compatibility.
2237
+ */
2238
+ isSsrTargetWebworker?: boolean;
2239
+ }) => EnvironmentOptions | null | void | Promise<EnvironmentOptions | null | void>>;
2046
2240
  /**
2047
- * Enable when `legacy.inconsistentCjsInterop` is true. See that option for more details.
2241
+ * Use this hook to read and store the final resolved vite config.
2048
2242
  */
2049
- legacyInconsistentCjsInterop?: boolean;
2050
- }
2051
- interface InternalResolveOptions extends Required<ResolveOptions>, ResolvePluginOptions {}
2052
- //#endregion
2053
- //#region src/node/packages.d.ts
2054
- /** Cache for package.json resolution and package.json contents */
2055
- type PackageCache = Map<string, PackageData>;
2056
- interface PackageData {
2057
- dir: string;
2058
- hasSideEffects: (id: string) => boolean | "no-treeshake" | null;
2059
- setResolvedCache: (key: string, entry: string, options: InternalResolveOptions) => void;
2060
- getResolvedCache: (key: string, options: InternalResolveOptions) => string | undefined;
2061
- data: {
2062
- [field: string]: any;
2063
- name: string;
2064
- type: string;
2065
- version: string;
2066
- main: string;
2067
- module: string;
2068
- browser: string | Record<string, string | false>;
2069
- exports: string | Record<string, any> | string[];
2070
- imports: Record<string, any>;
2071
- dependencies: Record<string, string>;
2072
- };
2073
- }
2074
- //#endregion
2075
- //#region src/node/plugins/license.d.ts
2076
- interface LicenseOptions {
2243
+ configResolved?: ObjectHook<(this: MinimalPluginContextWithoutEnvironment, config: ResolvedConfig) => void | Promise<void>>;
2077
2244
  /**
2078
- * The output file name of the license file relative to the output directory.
2079
- * Specify a path that ends with `.json` to output the raw JSON metadata.
2245
+ * Configure the vite server. The hook receives the {@link ViteDevServer}
2246
+ * instance. This can also be used to store a reference to the server
2247
+ * for use in other hooks.
2080
2248
  *
2081
- * @default '.vite/license.md'
2249
+ * The hooks will be called before internal middlewares are applied. A hook
2250
+ * can return a post hook that will be called after internal middlewares
2251
+ * are applied. Hook can be async functions and will be called in series.
2082
2252
  */
2083
- fileName: string;
2084
- }
2085
- //#endregion
2086
- //#region src/node/build.d.ts
2087
- interface BuildEnvironmentOptions {
2253
+ configureServer?: ObjectHook<ServerHook>;
2088
2254
  /**
2089
- * Compatibility transform target. The transform is performed with esbuild
2090
- * and the lowest supported target is es2015. Note this only handles
2091
- * syntax transformation and does not cover polyfills
2092
- *
2093
- * Default: 'baseline-widely-available' - transpile targeting browsers that
2094
- * are included in the Baseline Widely Available on 2026-01-01.
2095
- * (Chrome 111+, Edge 111+, Firefox 114+, Safari 16.4+).
2096
- *
2097
- * Another special value is 'esnext' - which only performs minimal transpiling
2098
- * (for minification compat).
2255
+ * Configure the preview server. The hook receives the {@link PreviewServer}
2256
+ * instance. This can also be used to store a reference to the server
2257
+ * for use in other hooks.
2099
2258
  *
2100
- * For custom targets, see https://esbuild.github.io/api/#target and
2101
- * https://esbuild.github.io/content-types/#javascript for more details.
2102
- * @default 'baseline-widely-available'
2103
- */
2104
- target?: "baseline-widely-available" | EsbuildTarget | false;
2105
- /**
2106
- * whether to inject module preload polyfill.
2107
- * Note: does not apply to library mode.
2108
- * @default true
2109
- * @deprecated use `modulePreload.polyfill` instead
2110
- */
2111
- polyfillModulePreload?: boolean;
2112
- /**
2113
- * Configure module preload
2114
- * Note: does not apply to library mode.
2115
- * @default true
2116
- */
2117
- modulePreload?: boolean | ModulePreloadOptions;
2118
- /**
2119
- * Directory relative from `root` where build output will be placed. If the
2120
- * directory exists, it will be removed before the build.
2121
- * @default 'dist'
2122
- */
2123
- outDir?: string;
2124
- /**
2125
- * Directory relative from `outDir` where the built js/css/image assets will
2126
- * be placed.
2127
- * @default 'assets'
2259
+ * The hooks are called before other middlewares are applied. A hook can
2260
+ * return a post hook that will be called after other middlewares are
2261
+ * applied. Hooks can be async functions and will be called in series.
2128
2262
  */
2129
- assetsDir?: string;
2263
+ configurePreviewServer?: ObjectHook<PreviewServerHook>;
2130
2264
  /**
2131
- * Static asset files smaller than this number (in bytes) will be inlined as
2132
- * base64 strings. If a callback is passed, a boolean can be returned to opt-in
2133
- * or opt-out of inlining. If nothing is returned the default logic applies.
2265
+ * Run logic when the server is restarted or closed. The hook receives a
2266
+ * `reason` that is `'restart'` when the server is restarting and `'close'`
2267
+ * when it is closing.
2134
2268
  *
2135
- * Default limit is `4096` (4 KiB). Set to `0` to disable.
2136
- * @default 4096
2269
+ * The hooks are called after the server is torn down. Hooks can be async
2270
+ * functions and will be called in parallel.
2137
2271
  */
2138
- assetsInlineLimit?: number | ((filePath: string, content: Buffer) => boolean | undefined);
2272
+ closeServer?: ObjectHook<CloseServerHook>;
2139
2273
  /**
2140
- * Whether to code-split CSS. When enabled, CSS in async chunks will be
2141
- * inlined as strings in the chunk and inserted via dynamically created
2142
- * style tags when the chunk is loaded.
2143
- * @default true
2274
+ * Same as `closeServer` but for the preview server. The preview server never
2275
+ * restarts, so no `reason` is provided.
2144
2276
  */
2145
- cssCodeSplit?: boolean;
2277
+ closePreviewServer?: ObjectHook<ClosePreviewServerHook>;
2146
2278
  /**
2147
- * An optional separate target for CSS minification.
2148
- * As esbuild only supports configuring targets to mainstream
2149
- * browsers, users may need this option when they are targeting
2150
- * a niche browser that comes with most modern JavaScript features
2151
- * but has poor CSS support, e.g. Android WeChat WebView, which
2152
- * doesn't support the #RGBA syntax.
2153
- * When `build.cssMinify` is `lightningcss` (the default), this
2154
- * option takes precedence over `css.lightningcss.targets` for the
2155
- * minification step.
2156
- * @default target
2157
- */
2158
- cssTarget?: EsbuildTarget | false;
2159
- /**
2160
- * Override CSS minification specifically instead of defaulting to `build.minify`,
2161
- * so you can configure minification for JS and CSS separately.
2162
- * @default 'lightningcss', but false if build.minify is disabled for client build
2163
- */
2164
- cssMinify?: boolean | "lightningcss" | "esbuild";
2165
- /**
2166
- * If `true`, a separate sourcemap file will be created. If 'inline', the
2167
- * sourcemap will be appended to the resulting output file as data URI.
2168
- * 'hidden' works like `true` except that the corresponding sourcemap
2169
- * comments in the bundled files are suppressed.
2170
- * @default false
2171
- */
2172
- sourcemap?: boolean | "inline" | "hidden";
2173
- /**
2174
- * Set to `false` to disable minification, or specify the minifier to use.
2175
- * Available options are 'oxc' or 'terser' or 'esbuild'.
2176
- * @default 'oxc' for client build, false for SSR build
2177
- */
2178
- minify?: boolean | "oxc" | "terser" | "esbuild";
2179
- /**
2180
- * Options for terser
2181
- * https://terser.org/docs/api-reference#minify-options
2279
+ * Transform index.html.
2280
+ * The hook receives the following arguments:
2182
2281
  *
2183
- * In addition, you can also pass a `maxWorkers: number` option to specify the
2184
- * max number of workers to spawn. Defaults to the number of CPUs minus 1.
2185
- */
2186
- terserOptions?: TerserOptions;
2187
- /**
2188
- * Whether to use import maps feature to optimize chunk caching efficiency.
2189
- * @default false
2190
- * @experimental
2191
- */
2192
- chunkImportMap?: boolean;
2193
- /**
2194
- * Alias to `rolldownOptions`
2195
- * @deprecated Use `rolldownOptions` instead.
2196
- */
2197
- rollupOptions?: RolldownOptions;
2198
- /**
2199
- * Will be merged with internal rolldown options.
2200
- * https://rolldown.rs/reference/Interface.RolldownOptions
2201
- */
2202
- rolldownOptions?: RolldownOptions;
2203
- /**
2204
- * Options to pass on to `@rollup/plugin-commonjs`
2205
- * @deprecated This option is no-op and will be removed in future versions.
2206
- */
2207
- commonjsOptions?: RollupCommonJSOptions;
2208
- /**
2209
- * Options to pass on to `@rollup/plugin-dynamic-import-vars`
2210
- */
2211
- dynamicImportVarsOptions?: RollupDynamicImportVarsOptions;
2212
- /**
2213
- * Whether to write bundle to disk
2214
- * @default true
2215
- */
2216
- write?: boolean;
2217
- /**
2218
- * Empty outDir on write.
2219
- * @default true when outDir is a sub directory of project root
2220
- */
2221
- emptyOutDir?: boolean | null;
2222
- /**
2223
- * Copy the public directory to outDir on write.
2224
- * @default true
2225
- */
2226
- copyPublicDir?: boolean;
2227
- /**
2228
- * Whether to emit a `.vite/license.md` file that includes all bundled dependencies'
2229
- * licenses. Pass an object to customize the output file name.
2230
- * @default false
2231
- */
2232
- license?: boolean | LicenseOptions;
2233
- /**
2234
- * Whether to emit a .vite/manifest.json in the output dir to map hash-less filenames
2235
- * to their hashed versions. Useful when you want to generate your own HTML
2236
- * instead of using the one generated by Vite.
2282
+ * - html: string
2283
+ * - ctx: IndexHtmlTransformContext, which contains:
2284
+ * - path: public path when served
2285
+ * - filename: filename on disk
2286
+ * - server?: ViteDevServer (only present during serve)
2287
+ * - bundle?: rollup.OutputBundle (only present during build)
2288
+ * - chunk?: rollup.OutputChunk
2289
+ * - originalUrl?: string
2237
2290
  *
2238
- * Example:
2291
+ * It can either return a transformed string, or a list of html tag
2292
+ * descriptors that will be injected into the `<head>` or `<body>`.
2239
2293
  *
2240
- * ```json
2241
- * {
2242
- * "main.js": {
2243
- * "file": "main.68fe3fad.js",
2244
- * "css": "main.e6b63442.css",
2245
- * "imports": [...],
2246
- * "dynamicImports": [...]
2247
- * }
2248
- * }
2249
- * ```
2250
- * @default false
2251
- */
2252
- manifest?: boolean | string;
2253
- /**
2254
- * Build in library mode. The value should be the global name of the lib in
2255
- * UMD mode. This will produce esm + cjs + umd bundle formats with default
2256
- * configurations that are suitable for distributing libraries.
2257
- * @default false
2258
- */
2259
- lib?: LibraryOptions | false;
2260
- /**
2261
- * Produce SSR oriented build. Note this requires specifying SSR entry via
2262
- * `rolldownOptions.input`.
2263
- * @default false
2264
- */
2265
- ssr?: boolean | string;
2266
- /**
2267
- * Generate SSR manifest for determining style links and asset preload
2268
- * directives in production.
2269
- * @default false
2270
- */
2271
- ssrManifest?: boolean | string;
2272
- /**
2273
- * Emit assets during SSR.
2274
- * @default false
2275
- */
2276
- ssrEmitAssets?: boolean;
2277
- /**
2278
- * Emit assets during build. Frameworks can set environments.ssr.build.emitAssets
2279
- * By default, it is true for the client and false for other environments.
2280
- */
2281
- emitAssets?: boolean;
2282
- /**
2283
- * Set to false to disable reporting compressed chunk sizes.
2284
- * Can slightly improve build speed.
2285
- * @default true
2286
- */
2287
- reportCompressedSize?: boolean;
2288
- /**
2289
- * Adjust chunk size warning limit (in kB).
2290
- * @default 500
2291
- */
2292
- chunkSizeWarningLimit?: number;
2293
- /**
2294
- * Rollup watch options
2295
- * https://rollupjs.org/configuration-options/#watch
2296
- * @default null
2297
- */
2298
- watch?: WatcherOptions | null;
2299
- /**
2300
- * create the Build Environment instance
2301
- */
2302
- createEnvironment?: (name: string, config: ResolvedConfig) => Promise<BuildEnvironment> | BuildEnvironment;
2303
- }
2304
- type BuildOptions = BuildEnvironmentOptions;
2305
- interface LibraryOptions {
2306
- /**
2307
- * Path of library entry.
2308
- * Defaults to the top-level `input` option when omitted.
2309
- */
2310
- entry?: InputOption;
2311
- /**
2312
- * The name of the exposed global variable. Required when the `formats` option includes
2313
- * `umd` or `iife`
2314
- */
2315
- name?: string;
2316
- /**
2317
- * Output bundle formats. Defaults to `['es', 'umd']` for a single entry, or
2318
- * `['es', 'cjs']` for multiple entries (`umd` and `iife` do not support
2319
- * multiple entries).
2320
- * @default ['es', 'umd']
2321
- */
2322
- formats?: LibraryFormats[];
2323
- /**
2324
- * The name of the package file output. The default file name is the name option
2325
- * of the project package.json. It can also be defined as a function taking the
2326
- * format as an argument.
2327
- */
2328
- fileName?: string | ((format: ModuleFormat, entryName: string) => string);
2329
- /**
2330
- * The name of the CSS file output if the library imports CSS. Defaults to the
2331
- * same value as `build.lib.fileName` if it's set a string, otherwise it falls
2332
- * back to the name option of the project package.json.
2333
- */
2334
- cssFileName?: string;
2335
- }
2336
- type LibraryFormats = "es" | "cjs" | "umd" | "iife";
2337
- interface ModulePreloadOptions {
2338
- /**
2339
- * Whether to inject a module preload polyfill.
2340
- * Note: does not apply to library mode.
2341
- * @default true
2294
+ * By default the transform is applied **after** vite's internal html
2295
+ * transform. If you need to apply the transform before vite, use an object:
2296
+ * `{ order: 'pre', handler: hook }`
2342
2297
  */
2343
- polyfill?: boolean;
2298
+ transformIndexHtml?: IndexHtmlTransform;
2344
2299
  /**
2345
- * Resolve the list of dependencies to preload for a given dynamic import
2300
+ * Build Environments
2301
+ *
2346
2302
  * @experimental
2347
2303
  */
2348
- resolveDependencies?: ResolveModulePreloadDependenciesFn;
2349
- }
2350
- interface ResolvedModulePreloadOptions {
2351
- polyfill: boolean;
2352
- resolveDependencies?: ResolveModulePreloadDependenciesFn;
2353
- }
2354
- type ResolveModulePreloadDependenciesFn = (filename: string, deps: string[], context: {
2355
- hostId: string;
2356
- hostType: "html" | "js";
2357
- }) => string[];
2358
- interface ResolvedBuildEnvironmentOptions extends Required<Omit<BuildEnvironmentOptions, "polyfillModulePreload">> {
2359
- modulePreload: false | ResolvedModulePreloadOptions;
2360
- }
2361
- interface ResolvedBuildOptions extends Required<Omit<BuildOptions, "polyfillModulePreload">> {
2362
- modulePreload: false | ResolvedModulePreloadOptions;
2363
- }
2364
- /**
2365
- * Bundles a single environment for production.
2366
- * Returns a Promise containing the build result.
2367
- */
2368
- export declare function build(inlineConfig?: InlineConfig): Promise<RolldownOutput | RolldownOutput[] | RolldownWatcher>;
2369
- type RenderBuiltAssetUrl = (filename: string, type: {
2370
- type: "asset" | "public";
2371
- hostId: string;
2372
- hostType: "js" | "css" | "html";
2373
- ssr: boolean;
2374
- }) => string | {
2375
- relative?: boolean;
2376
- runtime?: string;
2377
- } | undefined;
2378
- export declare class BuildEnvironment extends BaseEnvironment {
2379
- mode: "build";
2380
- isBuilt: boolean;
2381
- constructor(name: string, config: ResolvedConfig, setup?: {
2382
- options?: EnvironmentOptions;
2383
- });
2384
- init(): Promise<void>;
2385
- }
2386
- interface ViteBuilder {
2387
- environments: Record<string, BuildEnvironment>;
2388
- config: ResolvedConfig;
2389
- buildApp(): Promise<void>;
2390
- build(environment: BuildEnvironment): Promise<RolldownOutput | RolldownOutput[] | RolldownWatcher>;
2391
- runDevTools(): Promise<void>;
2392
- }
2393
- interface BuilderOptions {
2304
+ buildApp?: ObjectHook<BuildAppHook>;
2394
2305
  /**
2395
- * Whether to share the config instance among environments to align with the behavior of dev server.
2306
+ * Perform custom handling of HMR updates.
2307
+ * The handler receives a context containing changed filename, timestamp, a
2308
+ * list of modules affected by the file change, and the dev server instance.
2396
2309
  *
2397
- * @default false
2398
- * @experimental
2310
+ * - The hook can return a filtered list of modules to narrow down the update.
2311
+ * e.g. for a Vue SFC, we can narrow down the part to update by comparing
2312
+ * the descriptors.
2313
+ *
2314
+ * - The hook can also return an empty array and then perform custom updates
2315
+ * by sending a custom hmr payload via server.ws.send().
2316
+ *
2317
+ * - If the hook doesn't return a value, the hmr update will be performed as
2318
+ * normal.
2399
2319
  */
2400
- sharedConfigBuild?: boolean;
2320
+ handleHotUpdate?: ObjectHook<(this: MinimalPluginContextWithoutEnvironment, ctx: HmrContext) => Array<ModuleNode> | void | Promise<Array<ModuleNode> | void>>;
2401
2321
  /**
2402
- * Whether to share the plugin instances among environments to align with the behavior of dev server.
2322
+ * This hook is not supported by Rolldown yet. But the type is declared for compatibility.
2403
2323
  *
2404
- * @default false
2405
- * @experimental
2324
+ * @deprecated This hook is **not** deprecated. It is marked as deprecated just to make it clear that this hook is currently a no-op.
2406
2325
  */
2407
- sharedPlugins?: boolean;
2408
- buildApp?: (builder: ViteBuilder) => Promise<void>;
2409
- }
2410
- type ResolvedBuilderOptions = Required<BuilderOptions>;
2411
- /**
2412
- * Creates a ViteBuilder to orchestrate building multiple environments.
2413
- * @experimental
2414
- */
2415
- export declare function createBuilder(inlineConfig?: InlineConfig, useLegacyBuilder?: null | boolean): Promise<ViteBuilder>;
2416
- type BuildAppHook = (this: MinimalPluginContextWithoutEnvironment, builder: ViteBuilder) => Promise<void>;
2417
- //#endregion
2418
- //#region src/node/environment.d.ts
2419
- type Environment = DevEnvironment | BuildEnvironment | ScanEnvironment | UnknownEnvironment;
2420
- /**
2421
- * Creates a function that hides the complexities of a WeakMap with an initial value
2422
- * to implement object metadata. Used by plugins to implement cross hooks per
2423
- * environment metadata
2424
- *
2425
- * @experimental
2426
- */
2427
- export declare function perEnvironmentState<State>(initial: (environment: Environment) => State): (context: PluginContext) => State;
2428
- //#endregion
2429
- //#region src/node/server/pluginContainer.d.ts
2430
- type SkipInformation = {
2431
- id: string;
2432
- importer: string | undefined;
2433
- plugin: Plugin;
2434
- called?: boolean;
2435
- };
2436
- declare class EnvironmentPluginContainer<Env extends Environment = Environment> {
2437
- private _pluginContextMap;
2438
- private _resolvedRolldownOptions?;
2439
- private _processesing;
2440
- private _seenResolves;
2441
- private _moduleNodeToLoadAddedImports;
2442
- getSortedPluginHooks: PluginHookUtils["getSortedPluginHooks"];
2443
- getSortedPlugins: PluginHookUtils["getSortedPlugins"];
2444
- moduleGraph: EnvironmentModuleGraph | undefined;
2445
- watchFiles: Set<string>;
2446
- minimalContext: MinimalPluginContext$1<Env>;
2447
- private _started;
2448
- private _buildStartPromise;
2449
- private _closed;
2450
- private _updateModuleLoadAddedImports;
2451
- private _getAddedImports;
2452
- getModuleInfo(id: string): ModuleInfo | null;
2453
- private handleHookPromise;
2454
- get options(): InputOptions;
2455
- resolveRolldownOptions(): Promise<InputOptions>;
2456
- private _getPluginContext;
2457
- private hookParallel;
2458
- buildStart(_options?: InputOptions): Promise<void>;
2459
- resolveId(rawId: string, importer?: string | undefined, options?: {
2460
- kind?: ImportKind;
2461
- attributes?: Record<string, string>;
2462
- custom?: CustomPluginOptions;
2463
- /** @deprecated use `skipCalls` instead */
2464
- skip?: Set<Plugin>;
2465
- skipCalls?: readonly SkipInformation[];
2466
-
2467
- isEntry?: boolean;
2468
- }): Promise<PartialResolvedId | null>;
2469
- load(id: string): Promise<LoadResult | null>;
2470
- transform(code: string, id: string, options?: {
2471
- inMap?: SourceDescription["map"];
2472
- moduleType?: string;
2473
- }): Promise<{
2474
- code: string;
2475
- map: SourceMap | {
2476
- mappings: "";
2477
- } | null;
2478
- moduleType?: ModuleType;
2479
- }>;
2480
- watchChange(id: string, change: {
2481
- event: "create" | "update" | "delete";
2482
- }): Promise<void>;
2483
- close(): Promise<void>;
2484
- }
2485
- declare class BasicMinimalPluginContext<Meta = PluginContextMeta> {
2486
- meta: Meta;
2487
- private _logger;
2488
- constructor(meta: Meta, _logger: Logger);
2489
- get pluginName(): string;
2490
- debug(rawLog: string | RollupLog | (() => string | RollupLog)): void;
2491
- info(rawLog: string | RollupLog | (() => string | RollupLog)): void;
2492
- warn(rawLog: string | RollupLog | (() => string | RollupLog)): void;
2493
- error(e: string | RollupError): never;
2494
- private _normalizeRawLog;
2495
- }
2496
- declare class MinimalPluginContext$1<T extends Environment = Environment> extends BasicMinimalPluginContext implements MinimalPluginContext {
2497
- environment: T;
2498
- constructor(meta: PluginContextMeta, environment: T);
2499
- }
2500
- declare class PluginContainer {
2501
- private environments;
2502
- constructor(environments: Record<string, Environment>);
2503
- private _getEnvironment;
2504
- private _getPluginContainer;
2505
- getModuleInfo(id: string): ModuleInfo | null;
2506
- get options(): InputOptions;
2507
- buildStart(_options?: InputOptions): Promise<void>;
2508
- watchChange(id: string, change: {
2509
- event: "create" | "update" | "delete";
2510
- }): Promise<void>;
2511
- resolveId(rawId: string, importer?: string, options?: {
2512
- attributes?: Record<string, string>;
2513
- custom?: CustomPluginOptions;
2514
- /** @deprecated use `skipCalls` instead */
2515
- skip?: Set<Plugin>;
2516
- skipCalls?: readonly SkipInformation[];
2517
- ssr?: boolean;
2518
-
2519
- isEntry?: boolean;
2520
- }): Promise<PartialResolvedId | null>;
2521
- load(id: string, options?: {
2522
- ssr?: boolean;
2523
- }): Promise<LoadResult | null>;
2524
- transform(code: string, id: string, options?: {
2525
- ssr?: boolean;
2526
- environment?: Environment;
2527
- inMap?: SourceDescription["map"];
2528
- }): Promise<{
2326
+ shouldTransformCachedModule?: ObjectHook<(this: PluginContext, options: {
2529
2327
  code: string;
2530
- map: SourceMap | {
2531
- mappings: "";
2532
- } | null;
2533
- }>;
2534
- close(): Promise<void>;
2328
+ id: string;
2329
+ meta: CustomPluginOptions;
2330
+ moduleSideEffects: boolean | "no-treeshake";
2331
+ }) => boolean | null | void>;
2535
2332
  }
2333
+ type HookHandler<T> = T extends ObjectHook<infer H> ? H : T;
2334
+ type PluginWithRequiredHook<K extends keyof Plugin> = Plugin & { [P in K]: NonNullable<Plugin[P]>; };
2335
+ type Thenable<T> = T | Promise<T>;
2336
+ type FalsyPlugin = false | null | undefined;
2337
+ type PluginOption = Thenable<Plugin | {
2338
+ name: string;
2339
+ } | FalsyPlugin | PluginOption[]>;
2340
+ /**
2341
+ * @experimental
2342
+ */
2343
+ export declare function perEnvironmentPlugin(name: string, applyToEnvironment: (environment: PartialEnvironment) => boolean | Promise<boolean> | PluginOption): Plugin;
2344
+ //#endregion
2345
+ //#region src/node/watch.d.ts
2346
+ /**
2347
+ * Watch options for the dev server. Accepts both chokidar options and Rolldown
2348
+ * watch options. The chokidar options are used by the chokidar watcher, while
2349
+ * the Rolldown options are used by the Rolldown file watcher when bundled dev
2350
+ * mode is enabled.
2351
+ */
2352
+ type ServerWatchOptions = WatchOptions & Omit<DevWatchOptions, "enabled" | "skipWrite">;
2536
2353
  //#endregion
2537
2354
  //#region src/node/server/index.d.ts
2538
2355
  interface ServerOptions$1 extends CommonServerOptions {
@@ -2560,10 +2377,14 @@ interface ServerOptions$1 extends CommonServerOptions {
2560
2377
  ssrFiles?: string[];
2561
2378
  };
2562
2379
  /**
2563
- * chokidar watch options or null to disable FS watching
2564
- * https://github.com/paulmillr/chokidar/tree/3.6.0#api
2380
+ * File system watcher options, or null to disable FS watching.
2381
+ *
2382
+ * Accepts chokidar options
2383
+ * (https://github.com/paulmillr/chokidar/tree/3.6.0#api), which are used by
2384
+ * the chokidar watcher, and Rolldown watch options, which are used by the
2385
+ * Rolldown file watcher when bundled dev mode is enabled.
2565
2386
  */
2566
- watch?: WatchOptions | null;
2387
+ watch?: ServerWatchOptions | null;
2567
2388
  /**
2568
2389
  * Create Vite dev server to be used as a middleware in an existing server
2569
2390
  * @default false
@@ -2608,504 +2429,697 @@ interface ServerOptions$1 extends CommonServerOptions {
2608
2429
  */
2609
2430
  perEnvironmentStartEndDuringDev?: boolean;
2610
2431
  /**
2611
- * Backward compatibility. The watchChange hook was called only once for the client environment.
2612
- * This option enables per-environment watchChange hooks.
2613
- * @default false
2614
- * @experimental
2432
+ * Backward compatibility. The watchChange hook was called only once for the client environment.
2433
+ * This option enables per-environment watchChange hooks.
2434
+ * @default false
2435
+ * @experimental
2436
+ */
2437
+ perEnvironmentWatchChangeDuringDev?: boolean;
2438
+ /**
2439
+ * Run HMR tasks, by default the HMR propagation is done in parallel for all environments
2440
+ * @experimental
2441
+ */
2442
+ hotUpdateEnvironments?: (server: ViteDevServer, hmr: (environment: DevEnvironment) => Promise<void>) => Promise<void>;
2443
+ forwardConsole?: boolean | ForwardConsoleOptions;
2444
+ }
2445
+ interface ResolvedServerOptions extends Omit<RequiredExceptFor<ServerOptions$1, "host" | "https" | "proxy" | "hmr" | "ws" | "watch" | "origin" | "hotUpdateEnvironments">, "fs" | "middlewareMode" | "sourcemapIgnoreList" | "forwardConsole"> {
2446
+ fs: Required<FileSystemServeOptions>;
2447
+ middlewareMode: NonNullable<ServerOptions$1["middlewareMode"]>;
2448
+ sourcemapIgnoreList: Exclude<ServerOptions$1["sourcemapIgnoreList"], false | undefined>;
2449
+ forwardConsole: ResolvedForwardConsoleOptions;
2450
+ }
2451
+ interface FileSystemServeOptions {
2452
+ /**
2453
+ * Strictly restrict file accessing outside of allowing paths.
2454
+ *
2455
+ * Set to `false` to disable the warning
2456
+ *
2457
+ * @default true
2458
+ */
2459
+ strict?: boolean;
2460
+ /**
2461
+ * Restrict accessing files outside the allowed directories.
2462
+ *
2463
+ * Accepts absolute path or a path relative to project root.
2464
+ * Will try to search up for workspace root by default.
2465
+ */
2466
+ allow?: string[];
2467
+ /**
2468
+ * Restrict accessing files that matches the patterns.
2469
+ *
2470
+ * This will have higher priority than `allow`.
2471
+ * picomatch patterns are supported.
2472
+ *
2473
+ * @default ['.env', '.env.*', '*.{crt,pem,key,p12,pfx,cer,der}', '.npmrc', '.yarnrc.yml', '**\/.git/**']
2474
+ */
2475
+ deny?: string[];
2476
+ }
2477
+ type ServerHook = (this: MinimalPluginContextWithoutEnvironment, server: ViteDevServer) => (() => void) | void | Promise<(() => void) | void>;
2478
+ interface CloseServerHookContext {
2479
+ /**
2480
+ * Whether the server is being restarted (e.g. a config change or
2481
+ * `server.restart()`) or closed (e.g. the `q` shortcut, SIGTERM, stdin
2482
+ * ending, or `server.close()`).
2483
+ */
2484
+ reason: "restart" | "close";
2485
+ }
2486
+ type CloseServerHook = (this: MinimalPluginContextWithoutEnvironment, context: CloseServerHookContext) => void | Promise<void>;
2487
+ type HttpServer = http.Server | Http2SecureServer;
2488
+ interface ViteDevServer {
2489
+ /**
2490
+ * The resolved vite config object
2491
+ */
2492
+ config: ResolvedConfig;
2493
+ /**
2494
+ * A connect app instance.
2495
+ * - Can be used to attach custom middlewares to the dev server.
2496
+ * - Can also be used as the handler function of a custom http server
2497
+ * or as a middleware in any connect-style Node.js frameworks
2498
+ *
2499
+ * https://github.com/senchalabs/connect#use-middleware
2500
+ */
2501
+ middlewares: Connect.Server;
2502
+ /**
2503
+ * native Node http server instance
2504
+ * will be null in middleware mode
2505
+ */
2506
+ httpServer: HttpServer | null;
2507
+ /**
2508
+ * Chokidar watcher instance. If `config.server.watch` is set to `null`,
2509
+ * it will not watch any files and calling `add` or `unwatch` will have no effect.
2510
+ * https://github.com/paulmillr/chokidar/tree/3.6.0#api
2511
+ */
2512
+ watcher: FSWatcher;
2513
+ /**
2514
+ * WebSocket server with `send(payload)` method
2515
+ */
2516
+ ws: WebSocketServer;
2517
+ /**
2518
+ * An alias to `server.environments.client.hot`.
2519
+ * If you want to interact with all environments, loop over `server.environments`.
2520
+ */
2521
+ hot: NormalizedHotChannel;
2522
+ /**
2523
+ * Rollup plugin container that can run plugin hooks on a given file
2524
+ */
2525
+ pluginContainer: PluginContainer;
2526
+ /**
2527
+ * Module execution environments attached to the Vite server.
2528
+ */
2529
+ environments: Record<"client" | "ssr" | (string & {}), DevEnvironment>;
2530
+ /**
2531
+ * Module graph that tracks the import relationships, url to file mapping
2532
+ * and hmr state.
2533
+ */
2534
+ moduleGraph: ModuleGraph;
2535
+ /**
2536
+ * The resolved urls Vite prints on the CLI (URL-encoded). Returns `null`
2537
+ * in middleware mode or if the server is not listening on any port.
2538
+ */
2539
+ resolvedUrls: ResolvedServerUrls | null;
2540
+ /**
2541
+ * Programmatically resolve, load and transform a URL and get the result
2542
+ * without going through the http request pipeline.
2543
+ */
2544
+ transformRequest(url: string, options?: TransformOptions): Promise<TransformResult | null>;
2545
+ /**
2546
+ * Same as `transformRequest` but only warm up the URLs so the next request
2547
+ * will already be cached. The function will never throw as it handles and
2548
+ * reports errors internally.
2549
+ */
2550
+ warmupRequest(url: string, options?: TransformOptions): Promise<void>;
2551
+ /**
2552
+ * Apply vite built-in HTML transforms and any plugin HTML transforms.
2553
+ */
2554
+ transformIndexHtml(url: string, html: string, originalUrl?: string): Promise<string>;
2555
+ /**
2556
+ * Transform module code into SSR format.
2557
+ */
2558
+ ssrTransform(code: string, inMap: SourceMap | {
2559
+ mappings: "";
2560
+ } | null, url: string, originalCode?: string): Promise<TransformResult | null>;
2561
+ /**
2562
+ * Load a given URL as an instantiated module for SSR.
2563
+ */
2564
+ ssrLoadModule(url: string, opts?: {
2565
+ fixStacktrace?: boolean;
2566
+ }): Promise<Record<string, any>>;
2567
+ /**
2568
+ * Returns a fixed version of the given stack
2569
+ */
2570
+ ssrRewriteStacktrace(stack: string): string;
2571
+ /**
2572
+ * Mutates the given SSR error by rewriting the stacktrace
2573
+ */
2574
+ ssrFixStacktrace(e: Error): void;
2575
+ /**
2576
+ * Triggers HMR for a module in the module graph. You can use the `server.moduleGraph`
2577
+ * API to retrieve the module to be reloaded. If `hmr` is false, this is a no-op.
2578
+ */
2579
+ reloadModule(module: ModuleNode): Promise<void>;
2580
+ /**
2581
+ * Start the server.
2582
+ */
2583
+ listen(port?: number, isRestart?: boolean): Promise<ViteDevServer>;
2584
+ /**
2585
+ * Stop the server.
2586
+ */
2587
+ close(): Promise<void>;
2588
+ /**
2589
+ * Print server urls
2590
+ */
2591
+ printUrls(): void;
2592
+ /**
2593
+ * Bind CLI shortcuts
2594
+ */
2595
+ bindCLIShortcuts(options?: BindCLIShortcutsOptions<ViteDevServer>): void;
2596
+ /**
2597
+ * Restart the server.
2598
+ *
2599
+ * @param forceOptimize - force the optimizer to re-bundle, same as --force cli flag
2600
+ */
2601
+ restart(forceOptimize?: boolean): Promise<void>;
2602
+ /**
2603
+ * Open browser
2604
+ */
2605
+ openBrowser(): void;
2606
+ /**
2607
+ * Calling `await server.waitForRequestsIdle(id)` will wait until all static imports
2608
+ * are processed. If called from a load or transform plugin hook, the id needs to be
2609
+ * passed as a parameter to avoid deadlocks. Calling this function after the first
2610
+ * static imports section of the module graph has been processed will resolve immediately.
2611
+ */
2612
+ waitForRequestsIdle: (ignoredId?: string) => Promise<void>;
2613
+ }
2614
+ interface ResolvedServerUrls {
2615
+ local: string[];
2616
+ network: string[];
2617
+ /**
2618
+ * Names of the network interface that each {@link ResolvedServerUrls.network}
2619
+ * URL is bound to, in the same order as `network`. An entry is `undefined`
2620
+ * when the interface name is not known, for example when an explicit `host`
2621
+ * is set.
2622
+ */
2623
+ networkInterfaceNames?: (string | undefined)[];
2624
+ }
2625
+ export declare function createServer(inlineConfig?: InlineConfig | ResolvedConfig): Promise<ViteDevServer>;
2626
+ //#endregion
2627
+ //#region src/node/logger.d.ts
2628
+ type LogType = "error" | "warn" | "info";
2629
+ type LogLevel = LogType | "silent";
2630
+ interface Logger {
2631
+ info(msg: string, options?: LogOptions): void;
2632
+ warn(msg: string, options?: LogOptions): void;
2633
+ warnOnce(msg: string, options?: LogOptions): void;
2634
+ error(msg: string, options?: LogErrorOptions): void;
2635
+ clearScreen(type: LogType): void;
2636
+ hasErrorLogged(error: Error | RollupError): boolean;
2637
+ hasWarned: boolean;
2638
+ }
2639
+ interface LogOptions {
2640
+ clear?: boolean;
2641
+ timestamp?: boolean;
2642
+ environment?: string;
2643
+ }
2644
+ interface LogErrorOptions extends LogOptions {
2645
+ error?: Error | RollupError | null;
2646
+ }
2647
+ interface LoggerOptions {
2648
+ prefix?: string;
2649
+ allowClearScreen?: boolean;
2650
+ customLogger?: Logger;
2651
+ console?: Console;
2652
+ }
2653
+ export declare function createLogger(level?: LogLevel, options?: LoggerOptions): Logger;
2654
+ //#endregion
2655
+ //#region src/node/baseEnvironment.d.ts
2656
+ declare class PartialEnvironment {
2657
+ name: string;
2658
+ getTopLevelConfig(): ResolvedConfig;
2659
+ config: ResolvedConfig & ResolvedEnvironmentOptions;
2660
+ logger: Logger;
2661
+ constructor(name: string, topLevelConfig: ResolvedConfig, options?: ResolvedEnvironmentOptions);
2662
+ }
2663
+ declare class BaseEnvironment extends PartialEnvironment {
2664
+ get plugins(): readonly Plugin[];
2665
+ constructor(name: string, config: ResolvedConfig, options?: ResolvedEnvironmentOptions);
2666
+ }
2667
+ /**
2668
+ * This class discourages users from inversely checking the `mode`
2669
+ * to determine the type of environment, e.g.
2670
+ *
2671
+ * ```js
2672
+ * const isDev = environment.mode !== 'build' // bad
2673
+ * const isDev = environment.mode === 'dev' // good
2674
+ * ```
2675
+ *
2676
+ * You should also not check against `"unknown"` specifically. It's
2677
+ * a placeholder for more possible environment types.
2678
+ */
2679
+ declare class UnknownEnvironment extends BaseEnvironment {
2680
+ mode: "unknown";
2681
+ }
2682
+ //#endregion
2683
+ //#region src/node/plugins/resolve.d.ts
2684
+ interface EnvironmentResolveOptions {
2685
+ /**
2686
+ * @default ['browser', 'module', 'jsnext:main', 'jsnext']
2615
2687
  */
2616
- perEnvironmentWatchChangeDuringDev?: boolean;
2688
+ mainFields?: string[];
2689
+ conditions?: string[];
2690
+ externalConditions?: string[];
2617
2691
  /**
2618
- * Run HMR tasks, by default the HMR propagation is done in parallel for all environments
2619
- * @experimental
2692
+ * @default ['.mjs', '.js', '.mts', '.ts', '.jsx', '.tsx', '.json']
2620
2693
  */
2621
- hotUpdateEnvironments?: (server: ViteDevServer, hmr: (environment: DevEnvironment) => Promise<void>) => Promise<void>;
2622
- forwardConsole?: boolean | ForwardConsoleOptions;
2623
- }
2624
- interface ResolvedServerOptions extends Omit<RequiredExceptFor<ServerOptions$1, "host" | "https" | "proxy" | "hmr" | "ws" | "watch" | "origin" | "hotUpdateEnvironments">, "fs" | "middlewareMode" | "sourcemapIgnoreList" | "forwardConsole"> {
2625
- fs: Required<FileSystemServeOptions>;
2626
- middlewareMode: NonNullable<ServerOptions$1["middlewareMode"]>;
2627
- sourcemapIgnoreList: Exclude<ServerOptions$1["sourcemapIgnoreList"], false | undefined>;
2628
- forwardConsole: ResolvedForwardConsoleOptions;
2629
- }
2630
- interface FileSystemServeOptions {
2694
+ extensions?: string[];
2695
+ dedupe?: string[];
2631
2696
  /**
2632
- * Strictly restrict file accessing outside of allowing paths.
2633
- *
2634
- * Set to `false` to disable the warning
2635
- *
2636
- * @default true
2697
+ * Prevent listed dependencies from being externalized and will get bundled in build.
2698
+ * Only works in server environments for now. Previously this was `ssr.noExternal`.
2699
+ * @experimental
2637
2700
  */
2638
- strict?: boolean;
2701
+ noExternal?: string | RegExp | (string | RegExp)[] | true;
2639
2702
  /**
2640
- * Restrict accessing files outside the allowed directories.
2641
- *
2642
- * Accepts absolute path or a path relative to project root.
2643
- * Will try to search up for workspace root by default.
2703
+ * Externalize the given dependencies and their transitive dependencies.
2704
+ * Only works in server environments for now. Previously this was `ssr.external`.
2705
+ * @experimental
2644
2706
  */
2645
- allow?: string[];
2707
+ external?: string[] | true;
2646
2708
  /**
2647
- * Restrict accessing files that matches the patterns.
2648
- *
2649
- * This will have higher priority than `allow`.
2650
- * picomatch patterns are supported.
2651
- *
2652
- * @default ['.env', '.env.*', '*.{crt,pem,key,p12,pfx,cer,der}', '.npmrc', '.yarnrc.yml', '**\/.git/**']
2709
+ * Array of strings or regular expressions that indicate what modules are builtin for the environment.
2653
2710
  */
2654
- deny?: string[];
2711
+ builtins?: (string | RegExp)[];
2655
2712
  }
2656
- type ServerHook = (this: MinimalPluginContextWithoutEnvironment, server: ViteDevServer) => (() => void) | void | Promise<(() => void) | void>;
2657
- type HttpServer = http.Server | Http2SecureServer;
2658
- interface ViteDevServer {
2713
+ interface ResolveOptions extends EnvironmentResolveOptions {
2659
2714
  /**
2660
- * The resolved vite config object
2715
+ * @default false
2661
2716
  */
2662
- config: ResolvedConfig;
2717
+ preserveSymlinks?: boolean;
2663
2718
  /**
2664
- * A connect app instance.
2665
- * - Can be used to attach custom middlewares to the dev server.
2666
- * - Can also be used as the handler function of a custom http server
2667
- * or as a middleware in any connect-style Node.js frameworks
2719
+ * Enable tsconfig paths resolution
2668
2720
  *
2669
- * https://github.com/senchalabs/connect#use-middleware
2670
- */
2671
- middlewares: Connect.Server;
2672
- /**
2673
- * native Node http server instance
2674
- * will be null in middleware mode
2675
- */
2676
- httpServer: HttpServer | null;
2677
- /**
2678
- * Chokidar watcher instance. If `config.server.watch` is set to `null`,
2679
- * it will not watch any files and calling `add` or `unwatch` will have no effect.
2680
- * https://github.com/paulmillr/chokidar/tree/3.6.0#api
2681
- */
2682
- watcher: FSWatcher;
2683
- /**
2684
- * WebSocket server with `send(payload)` method
2685
- */
2686
- ws: WebSocketServer;
2687
- /**
2688
- * An alias to `server.environments.client.hot`.
2689
- * If you want to interact with all environments, loop over `server.environments`.
2721
+ * @default false
2690
2722
  */
2691
- hot: NormalizedHotChannel;
2723
+ tsconfigPaths?: boolean;
2724
+ }
2725
+ interface ResolvePluginOptions {
2726
+ root: string;
2727
+ isBuild: boolean;
2728
+ isProduction: boolean;
2729
+ packageCache?: PackageCache;
2692
2730
  /**
2693
- * Rollup plugin container that can run plugin hooks on a given file
2731
+ * src code mode also attempts the following:
2732
+ * - resolving /xxx as URLs
2733
+ * - resolving bare imports from optimized deps
2694
2734
  */
2695
- pluginContainer: PluginContainer;
2735
+ asSrc?: boolean;
2736
+ tryIndex?: boolean;
2737
+ tryPrefix?: string;
2738
+ preferRelative?: boolean;
2739
+ isRequire?: boolean;
2740
+ scan?: boolean;
2696
2741
  /**
2697
- * Module execution environments attached to the Vite server.
2742
+ * Enable when `legacy.inconsistentCjsInterop` is true. See that option for more details.
2698
2743
  */
2699
- environments: Record<"client" | "ssr" | (string & {}), DevEnvironment>;
2744
+ legacyInconsistentCjsInterop?: boolean;
2745
+ }
2746
+ interface InternalResolveOptions extends Required<ResolveOptions>, ResolvePluginOptions {}
2747
+ //#endregion
2748
+ //#region src/node/packages.d.ts
2749
+ /** Cache for package.json resolution and package.json contents */
2750
+ type PackageCache = Map<string, PackageData>;
2751
+ interface PackageData {
2752
+ dir: string;
2753
+ hasSideEffects: (id: string) => boolean | "no-treeshake" | null;
2754
+ setResolvedCache: (key: string, entry: string, options: InternalResolveOptions) => void;
2755
+ getResolvedCache: (key: string, options: InternalResolveOptions) => string | undefined;
2756
+ data: {
2757
+ [field: string]: any;
2758
+ name: string;
2759
+ type: string;
2760
+ version: string;
2761
+ main: string;
2762
+ module: string;
2763
+ browser: string | Record<string, string | false>;
2764
+ exports: string | Record<string, any> | string[];
2765
+ imports: Record<string, any>;
2766
+ dependencies: Record<string, string>;
2767
+ };
2768
+ }
2769
+ //#endregion
2770
+ //#region src/node/plugins/license.d.ts
2771
+ interface LicenseOptions {
2700
2772
  /**
2701
- * Module graph that tracks the import relationships, url to file mapping
2702
- * and hmr state.
2773
+ * The output file name of the license file relative to the output directory.
2774
+ * Specify a path that ends with `.json` to output the raw JSON metadata.
2775
+ *
2776
+ * @default '.vite/license.md'
2703
2777
  */
2704
- moduleGraph: ModuleGraph;
2778
+ fileName: string;
2779
+ }
2780
+ //#endregion
2781
+ //#region src/node/plugins/terser.d.ts
2782
+ interface TerserOptions extends TerserMinifyOptions {
2705
2783
  /**
2706
- * The resolved urls Vite prints on the CLI (URL-encoded). Returns `null`
2707
- * in middleware mode or if the server is not listening on any port.
2784
+ * Vite-specific option to specify the max number of workers to spawn
2785
+ * when minifying files with terser.
2786
+ *
2787
+ * @default number of CPUs minus 1
2708
2788
  */
2709
- resolvedUrls: ResolvedServerUrls | null;
2789
+ maxWorkers?: number;
2790
+ }
2791
+ //#endregion
2792
+ //#region src/node/build.d.ts
2793
+ interface BuildEnvironmentOptions {
2710
2794
  /**
2711
- * Programmatically resolve, load and transform a URL and get the result
2712
- * without going through the http request pipeline.
2795
+ * Compatibility transform target. The transform is performed with esbuild
2796
+ * and the lowest supported target is es2015. Note this only handles
2797
+ * syntax transformation and does not cover polyfills
2798
+ *
2799
+ * Default: 'baseline-widely-available' - transpile targeting browsers that
2800
+ * are included in the Baseline Widely Available on 2026-01-01.
2801
+ * (Chrome 111+, Edge 111+, Firefox 114+, Safari 16.4+).
2802
+ *
2803
+ * Another special value is 'esnext' - which only performs minimal transpiling
2804
+ * (for minification compat).
2805
+ *
2806
+ * For custom targets, see https://esbuild.github.io/api/#target and
2807
+ * https://esbuild.github.io/content-types/#javascript for more details.
2808
+ * @default 'baseline-widely-available'
2713
2809
  */
2714
- transformRequest(url: string, options?: TransformOptions): Promise<TransformResult | null>;
2810
+ target?: "baseline-widely-available" | EsbuildTarget | false;
2715
2811
  /**
2716
- * Same as `transformRequest` but only warm up the URLs so the next request
2717
- * will already be cached. The function will never throw as it handles and
2718
- * reports errors internally.
2812
+ * whether to inject module preload polyfill.
2813
+ * Note: does not apply to library mode.
2814
+ * @default true
2815
+ * @deprecated use `modulePreload.polyfill` instead
2719
2816
  */
2720
- warmupRequest(url: string, options?: TransformOptions): Promise<void>;
2817
+ polyfillModulePreload?: boolean;
2721
2818
  /**
2722
- * Apply vite built-in HTML transforms and any plugin HTML transforms.
2819
+ * Configure module preload
2820
+ * Note: does not apply to library mode.
2821
+ * @default true
2723
2822
  */
2724
- transformIndexHtml(url: string, html: string, originalUrl?: string): Promise<string>;
2823
+ modulePreload?: boolean | ModulePreloadOptions;
2725
2824
  /**
2726
- * Transform module code into SSR format.
2825
+ * Directory relative from `root` where build output will be placed. If the
2826
+ * directory exists, it will be removed before the build.
2827
+ * @default 'dist'
2727
2828
  */
2728
- ssrTransform(code: string, inMap: SourceMap | {
2729
- mappings: "";
2730
- } | null, url: string, originalCode?: string): Promise<TransformResult | null>;
2829
+ outDir?: string;
2731
2830
  /**
2732
- * Load a given URL as an instantiated module for SSR.
2831
+ * Directory relative from `outDir` where the built js/css/image assets will
2832
+ * be placed.
2833
+ * @default 'assets'
2733
2834
  */
2734
- ssrLoadModule(url: string, opts?: {
2735
- fixStacktrace?: boolean;
2736
- }): Promise<Record<string, any>>;
2835
+ assetsDir?: string;
2737
2836
  /**
2738
- * Returns a fixed version of the given stack
2837
+ * Static asset files smaller than this number (in bytes) will be inlined as
2838
+ * base64 strings. If a callback is passed, a boolean can be returned to opt-in
2839
+ * or opt-out of inlining. If nothing is returned the default logic applies.
2840
+ *
2841
+ * Default limit is `4096` (4 KiB). Set to `0` to disable.
2842
+ * @default 4096
2739
2843
  */
2740
- ssrRewriteStacktrace(stack: string): string;
2844
+ assetsInlineLimit?: number | ((filePath: string, content: Buffer) => boolean | undefined);
2741
2845
  /**
2742
- * Mutates the given SSR error by rewriting the stacktrace
2846
+ * Whether to code-split CSS. When enabled, CSS in async chunks will be
2847
+ * inlined as strings in the chunk and inserted via dynamically created
2848
+ * style tags when the chunk is loaded.
2849
+ * @default true
2743
2850
  */
2744
- ssrFixStacktrace(e: Error): void;
2851
+ cssCodeSplit?: boolean;
2745
2852
  /**
2746
- * Triggers HMR for a module in the module graph. You can use the `server.moduleGraph`
2747
- * API to retrieve the module to be reloaded. If `hmr` is false, this is a no-op.
2853
+ * An optional separate target for CSS minification.
2854
+ * As esbuild only supports configuring targets to mainstream
2855
+ * browsers, users may need this option when they are targeting
2856
+ * a niche browser that comes with most modern JavaScript features
2857
+ * but has poor CSS support, e.g. Android WeChat WebView, which
2858
+ * doesn't support the #RGBA syntax.
2859
+ * When `build.cssMinify` is `lightningcss` (the default), this
2860
+ * option takes precedence over `css.lightningcss.targets` for the
2861
+ * minification step.
2862
+ * @default target
2748
2863
  */
2749
- reloadModule(module: ModuleNode): Promise<void>;
2864
+ cssTarget?: EsbuildTarget | false;
2750
2865
  /**
2751
- * Start the server.
2866
+ * Override CSS minification specifically instead of defaulting to `build.minify`,
2867
+ * so you can configure minification for JS and CSS separately.
2868
+ * @default 'lightningcss', but false if build.minify is disabled for client build
2752
2869
  */
2753
- listen(port?: number, isRestart?: boolean): Promise<ViteDevServer>;
2870
+ cssMinify?: boolean | "lightningcss" | "esbuild";
2754
2871
  /**
2755
- * Stop the server.
2872
+ * If `true`, a separate sourcemap file will be created. If 'inline', the
2873
+ * sourcemap will be appended to the resulting output file as data URI.
2874
+ * 'hidden' works like `true` except that the corresponding sourcemap
2875
+ * comments in the bundled files are suppressed.
2876
+ * @default false
2756
2877
  */
2757
- close(): Promise<void>;
2878
+ sourcemap?: boolean | "inline" | "hidden";
2758
2879
  /**
2759
- * Print server urls
2880
+ * Set to `false` to disable minification, or specify the minifier to use.
2881
+ * Available options are 'oxc' or 'terser' or 'esbuild'.
2882
+ * @default 'oxc' for client build, false for SSR build
2760
2883
  */
2761
- printUrls(): void;
2884
+ minify?: boolean | "oxc" | "terser" | "esbuild";
2762
2885
  /**
2763
- * Bind CLI shortcuts
2886
+ * Options for terser
2887
+ * https://terser.org/docs/api-reference#minify-options
2888
+ *
2889
+ * In addition, you can also pass a `maxWorkers: number` option to specify the
2890
+ * max number of workers to spawn. Defaults to the number of CPUs minus 1.
2764
2891
  */
2765
- bindCLIShortcuts(options?: BindCLIShortcutsOptions<ViteDevServer>): void;
2892
+ terserOptions?: TerserOptions;
2766
2893
  /**
2767
- * Restart the server.
2768
- *
2769
- * @param forceOptimize - force the optimizer to re-bundle, same as --force cli flag
2894
+ * Whether to use import maps feature to optimize chunk caching efficiency.
2895
+ * @default false
2896
+ * @experimental
2770
2897
  */
2771
- restart(forceOptimize?: boolean): Promise<void>;
2898
+ chunkImportMap?: boolean;
2772
2899
  /**
2773
- * Open browser
2900
+ * Alias to `rolldownOptions`
2901
+ * @deprecated Use `rolldownOptions` instead.
2774
2902
  */
2775
- openBrowser(): void;
2903
+ rollupOptions?: RolldownOptions;
2776
2904
  /**
2777
- * Calling `await server.waitForRequestsIdle(id)` will wait until all static imports
2778
- * are processed. If called from a load or transform plugin hook, the id needs to be
2779
- * passed as a parameter to avoid deadlocks. Calling this function after the first
2780
- * static imports section of the module graph has been processed will resolve immediately.
2905
+ * Will be merged with internal rolldown options.
2906
+ * https://rolldown.rs/reference/Interface.RolldownOptions
2781
2907
  */
2782
- waitForRequestsIdle: (ignoredId?: string) => Promise<void>;
2783
- }
2784
- interface ResolvedServerUrls {
2785
- local: string[];
2786
- network: string[];
2908
+ rolldownOptions?: RolldownOptions;
2787
2909
  /**
2788
- * Names of the network interface that each {@link ResolvedServerUrls.network}
2789
- * URL is bound to, in the same order as `network`. An entry is `undefined`
2790
- * when the interface name is not known, for example when an explicit `host`
2791
- * is set.
2910
+ * Options to pass on to `@rollup/plugin-commonjs`
2911
+ * @deprecated This option is no-op and will be removed in future versions.
2792
2912
  */
2793
- networkInterfaceNames?: (string | undefined)[];
2794
- }
2795
- export declare function createServer(inlineConfig?: InlineConfig | ResolvedConfig): Promise<ViteDevServer>;
2796
- //#endregion
2797
- //#region src/node/plugins/html.d.ts
2798
- interface HtmlTagDescriptor {
2799
- tag: string;
2913
+ commonjsOptions?: RollupCommonJSOptions;
2800
2914
  /**
2801
- * attribute values will be escaped automatically if needed
2915
+ * Options to pass on to `@rollup/plugin-dynamic-import-vars`
2802
2916
  */
2803
- attrs?: Record<string, string | boolean | undefined>;
2804
- children?: string | HtmlTagDescriptor[];
2917
+ dynamicImportVarsOptions?: RollupDynamicImportVarsOptions;
2805
2918
  /**
2806
- * default: 'head-prepend'
2919
+ * Whether to write bundle to disk
2920
+ * @default true
2807
2921
  */
2808
- injectTo?: "head" | "body" | "head-prepend" | "body-prepend";
2809
- }
2810
- type IndexHtmlTransformResult = string | HtmlTagDescriptor[] | {
2811
- html: string;
2812
- tags: HtmlTagDescriptor[];
2813
- };
2814
- interface IndexHtmlTransformContext {
2922
+ write?: boolean;
2815
2923
  /**
2816
- * public path when served
2924
+ * Empty outDir on write.
2925
+ * @default true when outDir is a sub directory of project root
2817
2926
  */
2818
- path: string;
2927
+ emptyOutDir?: boolean | null;
2819
2928
  /**
2820
- * filename on disk
2929
+ * Copy the public directory to outDir on write.
2930
+ * @default true
2821
2931
  */
2822
- filename: string;
2823
- server?: ViteDevServer;
2824
- bundle?: OutputBundle;
2825
- chunk?: OutputChunk;
2826
- originalUrl?: string;
2827
- }
2828
- type IndexHtmlTransformHook = (this: MinimalPluginContextWithoutEnvironment, html: string, ctx: IndexHtmlTransformContext) => IndexHtmlTransformResult | void | Promise<IndexHtmlTransformResult | void>;
2829
- type IndexHtmlTransform = IndexHtmlTransformHook | {
2830
- order?: "pre" | "post" | null;
2831
- handler: IndexHtmlTransformHook;
2832
- };
2833
- //#endregion
2834
- //#region src/node/plugins/pluginFilter.d.ts
2835
- type StringFilter<Value = string | RegExp> = Value | Array<Value> | {
2836
- include?: Value | Array<Value>;
2837
- exclude?: Value | Array<Value>;
2838
- };
2839
- //#endregion
2840
- //#region src/node/plugin.d.ts
2841
- /**
2842
- * Vite plugins extends the Rollup plugin interface with a few extra
2843
- * vite-specific options. A valid vite plugin is also a valid Rollup plugin.
2844
- * On the contrary, a Rollup plugin may or may NOT be a valid vite universal
2845
- * plugin, since some Rollup features do not make sense in an unbundled
2846
- * dev server context. That said, as long as a rollup plugin doesn't have strong
2847
- * coupling between its bundle phase and output phase hooks then it should
2848
- * just work (that means, most of them).
2849
- *
2850
- * By default, the plugins are run during both serve and build. When a plugin
2851
- * is applied during serve, it will only run **non output plugin hooks** (see
2852
- * rollup type definition of {@link rollup#PluginHooks}). You can think of the
2853
- * dev server as only running `const bundle = rollup.rollup()` but never calling
2854
- * `bundle.generate()`.
2855
- *
2856
- * A plugin that expects to have different behavior depending on serve/build can
2857
- * export a factory function that receives the command being run via options.
2858
- *
2859
- * If a plugin should be applied only for server or build, a function format
2860
- * config file can be used to conditional determine the plugins to use.
2861
- *
2862
- * The current environment can be accessed from the context for the all non-global
2863
- * hooks (it is not available in config, configResolved, configureServer, etc).
2864
- * It can be a dev, build, or scan environment.
2865
- * Plugins can use this.environment.mode === 'dev' to guard for dev specific APIs.
2866
- */
2867
- interface PluginContextExtension {
2932
+ copyPublicDir?: boolean;
2868
2933
  /**
2869
- * Vite-specific environment instance
2934
+ * Whether to emit a `.vite/license.md` file that includes all bundled dependencies'
2935
+ * licenses. Pass an object to customize the output file name.
2936
+ * @default false
2870
2937
  */
2871
- environment: Environment;
2872
- }
2873
- interface PluginContextMetaExtension {
2874
- viteVersion: string;
2875
- }
2876
- interface ConfigPluginContext extends Omit<MinimalPluginContext, "meta" | "environment"> {
2877
- meta: Omit<PluginContextMeta, "watchMode">;
2878
- }
2879
- interface MinimalPluginContextWithoutEnvironment extends Omit<MinimalPluginContext, "environment"> {}
2880
- declare module "rolldown" {
2881
- interface MinimalPluginContext extends PluginContextExtension {}
2882
- interface PluginContextMeta extends PluginContextMetaExtension {}
2883
- }
2884
- /**
2885
- * There are two types of plugins in Vite. App plugins and environment plugins.
2886
- * Environment Plugins are defined by a constructor function that will be called
2887
- * once per each environment allowing users to have completely different plugins
2888
- * for each of them. The constructor gets the resolved environment after the server
2889
- * and builder has already been created simplifying config access and cache
2890
- * management for environment specific plugins.
2891
- * Environment Plugins are closer to regular rollup plugins. They can't define
2892
- * app level hooks (like config, configResolved, configureServer, etc).
2893
- */
2894
- interface Plugin<A = any> extends Rolldown.Plugin<A> {
2938
+ license?: boolean | LicenseOptions;
2895
2939
  /**
2896
- * Perform custom handling of HMR updates.
2897
- * The handler receives an options containing changed filename, timestamp, a
2898
- * list of modules affected by the file change, and the dev server instance.
2899
- *
2900
- * - The hook can return a filtered list of modules to narrow down the update.
2901
- * e.g. for a Vue SFC, we can narrow down the part to update by comparing
2902
- * the descriptors.
2940
+ * Whether to emit a .vite/manifest.json in the output dir to map hash-less filenames
2941
+ * to their hashed versions. Useful when you want to generate your own HTML
2942
+ * instead of using the one generated by Vite.
2903
2943
  *
2904
- * - The hook can also return an empty array and then perform custom updates
2905
- * by sending a custom hmr payload via environment.hot.send().
2944
+ * Example:
2906
2945
  *
2907
- * - If the hook doesn't return a value, the hmr update will be performed as
2908
- * normal.
2946
+ * ```json
2947
+ * {
2948
+ * "main.js": {
2949
+ * "file": "main.68fe3fad.js",
2950
+ * "css": "main.e6b63442.css",
2951
+ * "imports": [...],
2952
+ * "dynamicImports": [...]
2953
+ * }
2954
+ * }
2955
+ * ```
2956
+ * @default false
2909
2957
  */
2910
- hotUpdate?: ObjectHook<(this: MinimalPluginContext & {
2911
- environment: DevEnvironment;
2912
- }, options: HotUpdateOptions) => Array<EnvironmentModuleNode> | void | Promise<Array<EnvironmentModuleNode> | void>>;
2958
+ manifest?: boolean | string;
2913
2959
  /**
2914
- * extend hooks with ssr flag
2960
+ * Build in library mode. The value should be the global name of the lib in
2961
+ * UMD mode. This will produce esm + cjs + umd bundle formats with default
2962
+ * configurations that are suitable for distributing libraries.
2963
+ * @default false
2915
2964
  */
2916
- resolveId?: ObjectHook<(this: PluginContext, source: string, importer: string | undefined, options: {
2917
- kind?: ImportKind;
2918
- custom?: CustomPluginOptions;
2919
- ssr?: boolean | undefined;
2920
-
2921
- isEntry: boolean;
2922
- }) => Promise<ResolveIdResult> | ResolveIdResult, {
2923
- filter?: {
2924
- id?: StringFilter<RegExp>;
2925
- };
2926
- }>;
2927
- load?: ObjectHook<(this: PluginContext, id: string, options?: {
2928
- ssr?: boolean | undefined;
2929
- }) => Promise<LoadResult> | LoadResult, {
2930
- filter?: {
2931
- id?: StringFilter;
2932
- };
2933
- }>;
2934
- transform?: ObjectHook<(this: TransformPluginContext, code: string, id: string, options?: {
2935
- moduleType: ModuleType;
2936
- ssr?: boolean | undefined;
2937
- }) => Promise<Rolldown.TransformResult> | Rolldown.TransformResult, {
2938
- filter?: {
2939
- id?: StringFilter;
2940
- code?: StringFilter;
2941
- moduleType?: ModuleTypeFilter;
2942
- };
2943
- }>;
2965
+ lib?: LibraryOptions | false;
2944
2966
  /**
2945
- * Opt-in this plugin into the shared plugins pipeline.
2946
- * For backward-compatibility, plugins are re-recreated for each environment
2947
- * during `vite build --app`
2948
- * We have an opt-in per plugin, and a general `builder.sharedPlugins`
2949
- * In a future major, we'll flip the default to be shared by default
2950
- * @experimental
2967
+ * Produce SSR oriented build. Note this requires specifying SSR entry via
2968
+ * `rolldownOptions.input`.
2969
+ * @default false
2951
2970
  */
2952
- sharedDuringBuild?: boolean;
2971
+ ssr?: boolean | string;
2953
2972
  /**
2954
- * Opt-in this plugin into per-environment buildStart and buildEnd during dev.
2955
- * For backward-compatibility, the buildStart hook is called only once during
2956
- * dev, for the client environment. Plugins can opt-in to be called
2957
- * per-environment, aligning with the build hook behavior.
2958
- * @experimental
2973
+ * Generate SSR manifest for determining style links and asset preload
2974
+ * directives in production.
2975
+ * @default false
2959
2976
  */
2960
- perEnvironmentStartEndDuringDev?: boolean;
2977
+ ssrManifest?: boolean | string;
2961
2978
  /**
2962
- * Opt-in this plugin into per-environment watchChange during dev.
2963
- * For backward-compatibility, the watchChange hook is called only once during
2964
- * dev, for the client environment. Plugins can opt-in to be called
2965
- * per-environment, aligning with the watchChange hook behavior.
2966
- * @experimental
2979
+ * Emit assets during SSR.
2980
+ * @default false
2981
+ */
2982
+ ssrEmitAssets?: boolean;
2983
+ /**
2984
+ * Emit assets during build. Frameworks can set environments.ssr.build.emitAssets
2985
+ * By default, it is true for the client and false for other environments.
2986
+ */
2987
+ emitAssets?: boolean;
2988
+ /**
2989
+ * Set to false to disable reporting compressed chunk sizes.
2990
+ * Can slightly improve build speed.
2991
+ * @default true
2967
2992
  */
2968
- perEnvironmentWatchChangeDuringDev?: boolean;
2993
+ reportCompressedSize?: boolean;
2969
2994
  /**
2970
- * Enforce plugin invocation tier similar to webpack loaders. Hooks ordering
2971
- * is still subject to the `order` property in the hook object.
2972
- *
2973
- * Plugin invocation order:
2974
- * - alias resolution
2975
- * - `enforce: 'pre'` plugins
2976
- * - vite core plugins
2977
- * - normal plugins
2978
- * - vite build plugins
2979
- * - `enforce: 'post'` plugins
2980
- * - vite build post plugins
2995
+ * Adjust chunk size warning limit (in kB).
2996
+ * @default 500
2981
2997
  */
2982
- enforce?: "pre" | "post";
2998
+ chunkSizeWarningLimit?: number;
2983
2999
  /**
2984
- * Apply the plugin only for serve or build, or on certain conditions.
3000
+ * Rollup watch options
3001
+ * https://rollupjs.org/configuration-options/#watch
3002
+ * @default null
2985
3003
  */
2986
- apply?: "serve" | "build" | ((this: void, config: UserConfig, env: ConfigEnv) => boolean);
3004
+ watch?: WatcherOptions | null;
2987
3005
  /**
2988
- * Define environments where this plugin should be active
2989
- * By default, the plugin is active in all environments
2990
- * @experimental
3006
+ * create the Build Environment instance
2991
3007
  */
2992
- applyToEnvironment?: (environment: PartialEnvironment) => boolean | Promise<boolean> | PluginOption;
3008
+ createEnvironment?: (name: string, config: ResolvedConfig) => Promise<BuildEnvironment> | BuildEnvironment;
3009
+ }
3010
+ type BuildOptions = BuildEnvironmentOptions;
3011
+ interface LibraryOptions {
2993
3012
  /**
2994
- * Modify vite config before it's resolved. The hook can either mutate the
2995
- * passed-in config directly, or return a partial config object that will be
2996
- * deeply merged into existing config.
2997
- *
2998
- * Note: User plugins are resolved before running this hook so injecting other
2999
- * plugins inside the `config` hook will have no effect.
3013
+ * Path of library entry.
3014
+ * Defaults to the top-level `input` option when omitted.
3000
3015
  */
3001
- config?: ObjectHook<(this: ConfigPluginContext, config: UserConfig, env: ConfigEnv) => Omit<UserConfig, "plugins"> | null | void | Promise<Omit<UserConfig, "plugins"> | null | void>>;
3016
+ entry?: InputOption;
3002
3017
  /**
3003
- * Modify environment configs before it's resolved. The hook can either mutate the
3004
- * passed-in environment config directly, or return a partial config object that will be
3005
- * deeply merged into existing config.
3006
- * This hook is called for each environment with a partially resolved environment config
3007
- * that already accounts for the default environment config values set at the root level.
3008
- * If plugins need to modify the config of a given environment, they should do it in this
3009
- * hook instead of the config hook. Leaving the config hook only for modifying the root
3010
- * default environment config.
3018
+ * The name of the exposed global variable. Required when the `formats` option includes
3019
+ * `umd` or `iife`
3011
3020
  */
3012
- configEnvironment?: ObjectHook<(this: ConfigPluginContext, name: string, config: EnvironmentOptions, env: ConfigEnv & {
3013
- /**
3014
- * Whether this environment is SSR environment and `ssr.target` is set to `'webworker'`.
3015
- * Only intended to be used for backward compatibility.
3016
- */
3017
- isSsrTargetWebworker?: boolean;
3018
- }) => EnvironmentOptions | null | void | Promise<EnvironmentOptions | null | void>>;
3021
+ name?: string;
3019
3022
  /**
3020
- * Use this hook to read and store the final resolved vite config.
3023
+ * Output bundle formats. Defaults to `['es', 'umd']` for a single entry, or
3024
+ * `['es', 'cjs']` for multiple entries (`umd` and `iife` do not support
3025
+ * multiple entries).
3026
+ * @default ['es', 'umd']
3021
3027
  */
3022
- configResolved?: ObjectHook<(this: MinimalPluginContextWithoutEnvironment, config: ResolvedConfig) => void | Promise<void>>;
3028
+ formats?: LibraryFormats[];
3023
3029
  /**
3024
- * Configure the vite server. The hook receives the {@link ViteDevServer}
3025
- * instance. This can also be used to store a reference to the server
3026
- * for use in other hooks.
3027
- *
3028
- * The hooks will be called before internal middlewares are applied. A hook
3029
- * can return a post hook that will be called after internal middlewares
3030
- * are applied. Hook can be async functions and will be called in series.
3030
+ * The name of the package file output. The default file name is the name option
3031
+ * of the project package.json. It can also be defined as a function taking the
3032
+ * format as an argument.
3031
3033
  */
3032
- configureServer?: ObjectHook<ServerHook>;
3034
+ fileName?: string | ((format: ModuleFormat, entryName: string) => string);
3033
3035
  /**
3034
- * Configure the preview server. The hook receives the {@link PreviewServer}
3035
- * instance. This can also be used to store a reference to the server
3036
- * for use in other hooks.
3037
- *
3038
- * The hooks are called before other middlewares are applied. A hook can
3039
- * return a post hook that will be called after other middlewares are
3040
- * applied. Hooks can be async functions and will be called in series.
3036
+ * The name of the CSS file output if the library imports CSS. Defaults to the
3037
+ * same value as `build.lib.fileName` if it's set a string, otherwise it falls
3038
+ * back to the name option of the project package.json.
3041
3039
  */
3042
- configurePreviewServer?: ObjectHook<PreviewServerHook>;
3040
+ cssFileName?: string;
3041
+ }
3042
+ type LibraryFormats = "es" | "cjs" | "umd" | "iife";
3043
+ interface ModulePreloadOptions {
3043
3044
  /**
3044
- * Transform index.html.
3045
- * The hook receives the following arguments:
3046
- *
3047
- * - html: string
3048
- * - ctx: IndexHtmlTransformContext, which contains:
3049
- * - path: public path when served
3050
- * - filename: filename on disk
3051
- * - server?: ViteDevServer (only present during serve)
3052
- * - bundle?: rollup.OutputBundle (only present during build)
3053
- * - chunk?: rollup.OutputChunk
3054
- * - originalUrl?: string
3055
- *
3056
- * It can either return a transformed string, or a list of html tag
3057
- * descriptors that will be injected into the `<head>` or `<body>`.
3058
- *
3059
- * By default the transform is applied **after** vite's internal html
3060
- * transform. If you need to apply the transform before vite, use an object:
3061
- * `{ order: 'pre', handler: hook }`
3045
+ * Whether to inject a module preload polyfill.
3046
+ * Note: does not apply to library mode.
3047
+ * @default true
3062
3048
  */
3063
- transformIndexHtml?: IndexHtmlTransform;
3049
+ polyfill?: boolean;
3064
3050
  /**
3065
- * Build Environments
3066
- *
3051
+ * Resolve the list of dependencies to preload for a given dynamic import
3067
3052
  * @experimental
3068
3053
  */
3069
- buildApp?: ObjectHook<BuildAppHook>;
3054
+ resolveDependencies?: ResolveModulePreloadDependenciesFn;
3055
+ }
3056
+ interface ResolvedModulePreloadOptions {
3057
+ polyfill: boolean;
3058
+ resolveDependencies?: ResolveModulePreloadDependenciesFn;
3059
+ }
3060
+ type ResolveModulePreloadDependenciesFn = (filename: string, deps: string[], context: {
3061
+ hostId: string;
3062
+ hostType: "html" | "js";
3063
+ }) => string[];
3064
+ interface ResolvedBuildEnvironmentOptions extends Required<Omit<BuildEnvironmentOptions, "polyfillModulePreload">> {
3065
+ modulePreload: false | ResolvedModulePreloadOptions;
3066
+ }
3067
+ interface ResolvedBuildOptions extends Required<Omit<BuildOptions, "polyfillModulePreload">> {
3068
+ modulePreload: false | ResolvedModulePreloadOptions;
3069
+ }
3070
+ /**
3071
+ * Bundles a single environment for production.
3072
+ * Returns a Promise containing the build result.
3073
+ */
3074
+ export declare function build(inlineConfig?: InlineConfig): Promise<RolldownOutput | RolldownOutput[] | RolldownWatcher>;
3075
+ type RenderBuiltAssetUrl = (filename: string, type: {
3076
+ type: "asset" | "public";
3077
+ hostId: string;
3078
+ hostType: "js" | "css" | "html";
3079
+ ssr: boolean;
3080
+ }) => string | {
3081
+ relative?: boolean;
3082
+ runtime?: string;
3083
+ } | undefined;
3084
+ export declare class BuildEnvironment extends BaseEnvironment {
3085
+ mode: "build";
3086
+ isBuilt: boolean;
3087
+ constructor(name: string, config: ResolvedConfig, setup?: {
3088
+ options?: EnvironmentOptions;
3089
+ });
3090
+ init(): Promise<void>;
3091
+ }
3092
+ interface ViteBuilder {
3093
+ environments: Record<string, BuildEnvironment>;
3094
+ config: ResolvedConfig;
3095
+ buildApp(): Promise<void>;
3096
+ build(environment: BuildEnvironment): Promise<RolldownOutput | RolldownOutput[] | RolldownWatcher>;
3097
+ runDevTools(): Promise<void>;
3098
+ }
3099
+ interface BuilderOptions {
3070
3100
  /**
3071
- * Perform custom handling of HMR updates.
3072
- * The handler receives a context containing changed filename, timestamp, a
3073
- * list of modules affected by the file change, and the dev server instance.
3074
- *
3075
- * - The hook can return a filtered list of modules to narrow down the update.
3076
- * e.g. for a Vue SFC, we can narrow down the part to update by comparing
3077
- * the descriptors.
3078
- *
3079
- * - The hook can also return an empty array and then perform custom updates
3080
- * by sending a custom hmr payload via server.ws.send().
3101
+ * Whether to share the config instance among environments to align with the behavior of dev server.
3081
3102
  *
3082
- * - If the hook doesn't return a value, the hmr update will be performed as
3083
- * normal.
3103
+ * @default false
3104
+ * @experimental
3084
3105
  */
3085
- handleHotUpdate?: ObjectHook<(this: MinimalPluginContextWithoutEnvironment, ctx: HmrContext) => Array<ModuleNode> | void | Promise<Array<ModuleNode> | void>>;
3106
+ sharedConfigBuild?: boolean;
3086
3107
  /**
3087
- * This hook is not supported by Rolldown yet. But the type is declared for compatibility.
3108
+ * Whether to share the plugin instances among environments to align with the behavior of dev server.
3088
3109
  *
3089
- * @deprecated This hook is **not** deprecated. It is marked as deprecated just to make it clear that this hook is currently a no-op.
3110
+ * @default false
3111
+ * @experimental
3090
3112
  */
3091
- shouldTransformCachedModule?: ObjectHook<(this: PluginContext, options: {
3092
- code: string;
3093
- id: string;
3094
- meta: CustomPluginOptions;
3095
- moduleSideEffects: boolean | "no-treeshake";
3096
- }) => boolean | null | void>;
3113
+ sharedPlugins?: boolean;
3114
+ buildApp?: (builder: ViteBuilder) => Promise<void>;
3097
3115
  }
3098
- type HookHandler<T> = T extends ObjectHook<infer H> ? H : T;
3099
- type PluginWithRequiredHook<K extends keyof Plugin> = Plugin & { [P in K]: NonNullable<Plugin[P]>; };
3100
- type Thenable<T> = T | Promise<T>;
3101
- type FalsyPlugin = false | null | undefined;
3102
- type PluginOption = Thenable<Plugin | {
3103
- name: string;
3104
- } | FalsyPlugin | PluginOption[]>;
3116
+ type ResolvedBuilderOptions = Required<BuilderOptions>;
3105
3117
  /**
3118
+ * Creates a ViteBuilder to orchestrate building multiple environments.
3106
3119
  * @experimental
3107
3120
  */
3108
- export declare function perEnvironmentPlugin(name: string, applyToEnvironment: (environment: PartialEnvironment) => boolean | Promise<boolean> | PluginOption): Plugin;
3121
+ export declare function createBuilder(inlineConfig?: InlineConfig, useLegacyBuilder?: null | boolean): Promise<ViteBuilder>;
3122
+ type BuildAppHook = (this: MinimalPluginContextWithoutEnvironment, builder: ViteBuilder) => Promise<void>;
3109
3123
  //#endregion
3110
3124
  //#region src/node/idResolver.d.ts
3111
3125
  type ResolveIdFn = (environment: PartialEnvironment, id: string, importer?: string, aliasOnly?: boolean) => Promise<string | undefined>;
@@ -3115,7 +3129,7 @@ type ResolveIdFn = (environment: PartialEnvironment, id: string, importer?: stri
3115
3129
  */
3116
3130
  export declare function createIdResolver(config: ResolvedConfig, options?: Partial<InternalResolveOptions>): ResolveIdFn;
3117
3131
  //#endregion
3118
- //#region ../../node_modules/.pnpm/postcss-load-config@6.0.1_jiti@2.7.0_postcss@8.5.26_tsx@4.23.12_yaml@2.9.0/node_modules/postcss-load-config/src/index.d.ts
3132
+ //#region ../../node_modules/.pnpm/postcss-load-config@6.0.1_jiti@2.7.0_postcss@8.5.28_tsx@4.23.13_yaml@2.9.0/node_modules/postcss-load-config/src/index.d.ts
3119
3133
  type ConfigPlugin = Transformer | PostCSS.Plugin | Processor;
3120
3134
  interface Config {
3121
3135
  parser?: string | ProcessOptions['parser'] | false;
@@ -3248,32 +3262,15 @@ interface JsonOptions {
3248
3262
  stringify?: boolean | "auto";
3249
3263
  }
3250
3264
  //#endregion
3251
- //#region src/node/assetSource.d.ts
3252
- /**
3253
- * Defines which attributes of an HTML element should be treated as asset sources.
3254
- * Used in `html.additionalAssetSources` configuration.
3255
- */
3256
- interface HtmlAssetSource {
3257
- /**
3258
- * Attributes that contain a single asset URL.
3259
- * @example ['src', 'data-src-dark']
3260
- */
3261
- srcAttributes?: string[];
3262
- /**
3263
- * Attributes that contain srcset-format URLs.
3264
- * @example ['srcset', 'imagesrcset']
3265
- */
3266
- srcsetAttributes?: string[];
3267
- /**
3268
- * Called before handling an attribute to determine if it should be processed.
3269
- */
3270
- filter?: (data: HtmlAssetSourceFilterData) => boolean;
3271
- }
3272
- interface HtmlAssetSourceFilterData {
3273
- key: string;
3274
- value: string;
3275
- attributes: Record<string, string>;
3265
+ //#region src/node/plugins/oxc.d.ts
3266
+ interface OxcOptions extends Omit<rolldown_utils_TransformOptions, "cwd" | "sourceType" | "lang" | "sourcemap" | "helpers" | "inject" | "tsconfig" | "inputMap"> {
3267
+ include?: string | RegExp | ReadonlyArray<string | RegExp>;
3268
+ exclude?: string | RegExp | ReadonlyArray<string | RegExp>;
3269
+ jsxInject?: string;
3270
+ jsxRefreshInclude?: string | RegExp | ReadonlyArray<string | RegExp>;
3271
+ jsxRefreshExclude?: string | RegExp | ReadonlyArray<string | RegExp>;
3276
3272
  }
3273
+ export declare function transformWithOxc(code: string, filename: string, options?: rolldown_utils_TransformOptions, inMap?: object, config?: ResolvedConfig, watcher?: FSWatcher): Promise<Omit<rolldown_utils_TransformResult, "errors">>;
3277
3274
  //#endregion
3278
3275
  //#region src/node/ssr/index.d.ts
3279
3276
  type SSRTarget = "node" | "webworker";
@@ -3320,16 +3317,6 @@ interface ResolvedSSROptions extends SSROptions {
3320
3317
  optimizeDeps: SsrDepOptimizationConfig;
3321
3318
  }
3322
3319
  //#endregion
3323
- //#region src/node/plugins/oxc.d.ts
3324
- interface OxcOptions extends Omit<rolldown_utils_TransformOptions, "cwd" | "sourceType" | "lang" | "sourcemap" | "helpers" | "inject" | "tsconfig" | "inputMap"> {
3325
- include?: string | RegExp | ReadonlyArray<string | RegExp>;
3326
- exclude?: string | RegExp | ReadonlyArray<string | RegExp>;
3327
- jsxInject?: string;
3328
- jsxRefreshInclude?: string | RegExp | ReadonlyArray<string | RegExp>;
3329
- jsxRefreshExclude?: string | RegExp | ReadonlyArray<string | RegExp>;
3330
- }
3331
- export declare function transformWithOxc(code: string, filename: string, options?: rolldown_utils_TransformOptions, inMap?: object, config?: ResolvedConfig, watcher?: FSWatcher): Promise<Omit<rolldown_utils_TransformResult, "errors">>;
3332
- //#endregion
3333
3320
  //#region src/node/config.d.ts
3334
3321
  interface ConfigEnv {
3335
3322
  /**
@@ -3494,6 +3481,11 @@ interface UserConfig extends DefaultEnvironmentOptions {
3494
3481
  * @default process.cwd()
3495
3482
  */
3496
3483
  root?: string;
3484
+ /**
3485
+ * Path to the TypeScript configuration file. Relative paths are resolved
3486
+ * from the project root.
3487
+ */
3488
+ tsconfig?: string;
3497
3489
  /**
3498
3490
  * Base public path when served in development or production.
3499
3491
  * @default '/'
@@ -3659,7 +3651,6 @@ interface UserConfig extends DefaultEnvironmentOptions {
3659
3651
  appType?: AppType;
3660
3652
  /**
3661
3653
  * Enable devtools integration. Ensure that `@vitejs/devtools` is installed as a dependency.
3662
- * This feature is currently supported only in build mode.
3663
3654
  * @experimental
3664
3655
  * @default false
3665
3656
  */
@@ -3814,7 +3805,7 @@ interface ResolvedConfig extends Readonly<Omit<UserConfig, "plugins" | "css" | "
3814
3805
  /** @experimental */
3815
3806
  builder: ResolvedBuilderOptions | undefined;
3816
3807
  build: ResolvedBuildOptions;
3817
- devtools: ResolvedDevToolsConfig;
3808
+ devtools: ResolvedDevToolsConfig | false;
3818
3809
  preview: ResolvedPreviewOptions;
3819
3810
  ssr: ResolvedSSROptions;
3820
3811
  assetsInclude: (file: string) => boolean;
@@ -4066,4 +4057,4 @@ export declare const parseAst: typeof parseAst$1;
4066
4057
  export declare const parseAstAsync: typeof parseAstAsync$1;
4067
4058
  export declare const esbuildVersion = "0.25.0";
4068
4059
  //#endregion
4069
- export { type Alias, type AliasOptions, type AnymatchFn, type AnymatchPattern, type AppType, type BindCLIShortcutsOptions, type BuildAppHook, type BuildEnvironmentOptions, type BuildOptions, type BuilderOptions, type CLIShortcut, type CSSModulesOptions, type CSSOptions, type ChunkMetadata, type CommonServerOptions, type ConfigEnv, type ConfigPluginContext, type Connect, type ConnectedPayload, type CorsOptions, type CorsOrigin, type CustomEventMap, type CustomPayload, type CustomPluginOptionsVite, type DepOptimizationConfig, type DepOptimizationMetadata, type DepOptimizationOptions, type DevEnvironmentContext, type DevEnvironmentOptions, type ESBuildOptions, type ESTree, type Environment, type EnvironmentModuleGraph, type EnvironmentModuleNode, type EnvironmentOptions, type ErrorPayload, type EsbuildTransformOptions, type ExperimentalOptions, type ExportsData, type FSWatcher, type FetchFunction, type FetchModuleOptions, type FetchResult, type FetchableDevEnvironment, type FetchableDevEnvironmentContext, type FileSystemServeOptions, type FilterPattern, type FullReloadPayload, type GeneralImportGlobOptions, type HMRPayload, type HTMLOptions, type HmrContext, type HmrOptions, type HookHandler, type HotChannel, type HotChannelClient, type HotChannelListener, type HotPayload, type HotUpdateOptions, type HtmlAssetSource, type HtmlTagDescriptor, type index_d_exports as HttpProxy, type HttpServer, type ImportGlobFunction, type ImportGlobOptions, type IndexHtmlTransform, type IndexHtmlTransformContext, type IndexHtmlTransformHook, type IndexHtmlTransformResult, type InferCustomEventPayload, type InlineConfig, type InternalResolveOptions, type InvalidatePayload, type JsonOptions, type KnownAsTypeMap, type KnownQueryTypeMap, type LegacyOptions, type LessPreprocessorOptions, type LibraryFormats, type LibraryOptions, type LightningCSSOptions, type LogErrorOptions, type LogLevel, type LogOptions, type LogType, type Logger, type LoggerOptions, type Manifest, type ManifestChunk, type MapToFunction, type AnymatchMatcher as Matcher, type MinifyOptions, type MinifyResult, type MinimalPluginContextWithoutEnvironment, type ModuleGraph, type ModuleNode, type ModulePreloadOptions, type ModuleRunnerTransformOptions, type NormalizedHotChannel, type NormalizedHotChannelClient, type NormalizedServerHotChannel, type OptimizedDepInfo, type OxcOptions, type ParseResult, type ParserOptions, type Plugin, type PluginContainer, type PluginHookUtils, type PluginOption, type Config as PostcssUserConfig, type PreprocessCSSResult, type PreviewOptions, type PreviewServer, type PreviewServerHook, type ProxyOptions, type PrunePayload, type RenderBuiltAssetUrl, type ResolveFn, type ResolveModulePreloadDependenciesFn, type ResolveOptions, type ResolvedBuildEnvironmentOptions, type ResolvedBuildOptions, type ResolvedCSSOptions, type ResolvedConfig, type ResolvedDevEnvironmentOptions, type ResolvedModulePreloadOptions, type ResolvedPreviewOptions, type ResolvedSSROptions, type ResolvedServerOptions, type ResolvedServerUrls, type ResolvedUrl, type ResolvedWorkerOptions, type ResolverFunction, type ResolverObject, type Rolldown, type Rollup, type RollupCommonJSOptions, type RollupDynamicImportVarsOptions, type RunnableDevEnvironment, type RunnableDevEnvironmentContext, type SSROptions, type SSRTarget, type SassPreprocessorOptions, type SendOptions, type ServerHook, type ServerHotChannel, type ServerModuleRunnerOptions, type ServerOptions$1 as ServerOptions, type SkipInformation, type SsrDepOptimizationConfig, type StylusPreprocessorOptions, type Terser, type TerserOptions, type TransformOptions, type TransformResult, type Update, type UpdatePayload, type UserConfig, type UserConfigExport, type UserConfigFn, type UserConfigFnObject, type UserConfigFnPromise, Visitor, type VisitorObject, type ViteBuilder, type ViteDevServer, type WatchOptions, type WebSocket, type WebSocketAlias, type WebSocketClient, type WebSocketCustomListener, type WebSocketServer, type WsOptions, DEFAULT_CLIENT_CONDITIONS as defaultClientConditions, DEFAULT_CLIENT_MAIN_FIELDS as defaultClientMainFields, DEFAULT_EXTERNAL_CONDITIONS as defaultExternalConditions, DEFAULT_SERVER_CONDITIONS as defaultServerConditions, DEFAULT_SERVER_MAIN_FIELDS as defaultServerMainFields, esmExternalRequirePlugin, minify, minifySync, ssrTransform as moduleRunnerTransform, parse, parseSync, rolldownVersion, VERSION as version, withFilter };
4060
+ export { type Alias, type AliasOptions, type AnymatchFn, type AnymatchPattern, type AppType, type BindCLIShortcutsOptions, type BuildAppHook, type BuildEnvironmentOptions, type BuildOptions, type BuilderOptions, type CLIShortcut, type CSSModulesOptions, type CSSOptions, type ChunkMetadata, type CommonServerOptions, type ConfigEnv, type ConfigPluginContext, type Connect, type ConnectedPayload, type CorsOptions, type CorsOrigin, type CustomEventMap, type CustomPayload, type CustomPluginOptionsVite, type DepOptimizationConfig, type DepOptimizationMetadata, type DepOptimizationOptions, type DevEnvironmentContext, type DevEnvironmentOptions, type ESBuildOptions, type ESTree, type Environment, type EnvironmentModuleGraph, type EnvironmentModuleNode, type EnvironmentOptions, type ErrorPayload, type EsbuildTransformOptions, type ExperimentalOptions, type ExportsData, type FSWatcher, type FetchFunction, type FetchModuleOptions, type FetchResult, type FetchableDevEnvironment, type FetchableDevEnvironmentContext, type FileSystemServeOptions, type FilterPattern, type FullReloadPayload, type GeneralImportGlobOptions, type HMRPayload, type HTMLOptions, type HmrContext, type HmrOptions, type HookHandler, type HotChannel, type HotChannelClient, type HotChannelListener, type HotPayload, type HotUpdateOptions, type HtmlAssetSource, type HtmlTagDescriptor, type index_d_exports as HttpProxy, type HttpServer, type ImportGlobFunction, type ImportGlobOptions, type IndexHtmlTransform, type IndexHtmlTransformContext, type IndexHtmlTransformHook, type IndexHtmlTransformResult, type InferCustomEventPayload, type InlineConfig, type InternalResolveOptions, type InvalidatePayload, type JsonOptions, type KnownAsTypeMap, type KnownQueryTypeMap, type LegacyOptions, type LessPreprocessorOptions, type LibraryFormats, type LibraryOptions, type LightningCSSOptions, type LogErrorOptions, type LogLevel, type LogOptions, type LogType, type Logger, type LoggerOptions, type Manifest, type ManifestChunk, type MapToFunction, type AnymatchMatcher as Matcher, type MinifyOptions, type MinifyResult, type MinimalPluginContextWithoutEnvironment, type ModuleGraph, type ModuleNode, type ModulePreloadOptions, type ModuleRunnerTransformOptions, type NormalizedHotChannel, type NormalizedHotChannelClient, type NormalizedServerHotChannel, type OptimizedDepInfo, type OxcOptions, type ParseResult, type ParserOptions, type Plugin, type PluginContainer, type PluginHookUtils, type PluginOption, type Config as PostcssUserConfig, type PreprocessCSSResult, type PreviewOptions, type PreviewServer, type PreviewServerHook, type ProxyOptions, type PrunePayload, type RenderBuiltAssetUrl, type ResolveFn, type ResolveModulePreloadDependenciesFn, type ResolveOptions, type ResolvedBuildEnvironmentOptions, type ResolvedBuildOptions, type ResolvedCSSOptions, type ResolvedConfig, type ResolvedDevEnvironmentOptions, type ResolvedDevToolsConfig, type ResolvedModulePreloadOptions, type ResolvedPreviewOptions, type ResolvedSSROptions, type ResolvedServerOptions, type ResolvedServerUrls, type ResolvedUrl, type ResolvedWorkerOptions, type ResolverFunction, type ResolverObject, type Rolldown, type Rollup, type RollupCommonJSOptions, type RollupDynamicImportVarsOptions, type RunnableDevEnvironment, type RunnableDevEnvironmentContext, type SSROptions, type SSRTarget, type SassPreprocessorOptions, type SendOptions, type ServerHook, type ServerHotChannel, type ServerModuleRunnerOptions, type ServerOptions$1 as ServerOptions, type ServerWatchOptions, type SkipInformation, type SsrDepOptimizationConfig, type StylusPreprocessorOptions, type Terser, type TerserOptions, type TransformOptions, type TransformResult, type Update, type UpdatePayload, type UserConfig, type UserConfigExport, type UserConfigFn, type UserConfigFnObject, type UserConfigFnPromise, Visitor, type VisitorObject, type ViteBuilder, type ViteDevServer, type WatchOptions, type WebSocket, type WebSocketAlias, type WebSocketClient, type WebSocketCustomListener, type WebSocketServer, type WsOptions, DEFAULT_CLIENT_CONDITIONS as defaultClientConditions, DEFAULT_CLIENT_MAIN_FIELDS as defaultClientMainFields, DEFAULT_EXTERNAL_CONDITIONS as defaultExternalConditions, DEFAULT_SERVER_CONDITIONS as defaultServerConditions, DEFAULT_SERVER_MAIN_FIELDS as defaultServerMainFields, esmExternalRequirePlugin, minify, minifySync, ssrTransform as moduleRunnerTransform, parse, parseSync, rolldownVersion, VERSION as version, withFilter };