Area restrita - Questionario

This commit is contained in:
2026-06-08 23:50:59 -03:00
parent f2e2400637
commit ef968f10ae
6972 changed files with 23454 additions and 2267883 deletions
+2 -14
View File
@@ -847,14 +847,6 @@ interface DepOptimizationConfig {
* @experimental
*/
holdUntilCrawlEnd?: boolean;
/**
* When enabled, Vite will not throw an error when an outdated optimized
* dependency is requested. Enabling this option may cause a single module
* to have a multiple reference.
* @default false
* @experimental
*/
ignoreOutdatedRequests?: boolean;
}
type DepOptimizationOptions = DepOptimizationConfig & {
/**
@@ -956,6 +948,7 @@ interface TransformOptions {
*/
ssr?: boolean;
}
interface TransformOptionsInternal {}
//#endregion
//#region src/node/server/moduleGraph.d.ts
declare class EnvironmentModuleNode {
@@ -1120,11 +1113,6 @@ interface HotChannelClient {
}
type HotChannelListener<T$1 extends string = string> = (data: InferCustomEventPayload<T$1>, client: HotChannelClient) => void;
interface HotChannel<Api = any> {
/**
* When true, the fs access check is skipped in fetchModule.
* Set this for transports that is not exposed over the network.
*/
skipFsCheck?: boolean;
/**
* Broadcast events to all clients
*/
@@ -1569,7 +1557,7 @@ declare class DevEnvironment extends BaseEnvironment {
listen(server: ViteDevServer): Promise<void>;
fetchModule(id: string, importer?: string, options?: FetchFunctionOptions): Promise<moduleRunner_FetchResult>;
reloadModule(module: EnvironmentModuleNode): Promise<void>;
transformRequest(url: string): Promise<TransformResult | null>;
transformRequest(url: string, options?: TransformOptionsInternal): Promise<TransformResult | null>;
warmupRequest(url: string): Promise<void>;
close(): Promise<void>;
/**