securityos/node_modules/next/dist/build/handle-externals.d.ts

19 lines
1.3 KiB
TypeScript
Raw Permalink Normal View History

2024-09-06 15:32:35 +00:00
import type { WebpackLayerName } from '../lib/constants';
import type { NextConfigComplete } from '../server/config-shared';
export declare function isResourceInPackages(resource: string, packageNames?: string[], packageDirMapping?: Map<string, string>): boolean | undefined;
export declare function resolveExternal(dir: string, esmExternalsConfig: NextConfigComplete['experimental']['esmExternals'], context: string, request: string, isEsmRequested: boolean, hasAppDir: boolean, getResolve: (options: any) => (resolveContext: string, resolveRequest: string) => Promise<[string | null, boolean]>, isLocalCallback?: (res: string) => any, baseResolveCheck?: boolean, esmResolveOptions?: any, nodeResolveOptions?: any, baseEsmResolveOptions?: any, baseResolveOptions?: any): Promise<{
localRes: any;
res?: undefined;
isEsm?: undefined;
} | {
res: string | null;
isEsm: boolean;
localRes?: undefined;
}>;
export declare function makeExternalHandler({ config, optOutBundlingPackageRegex, dir, hasAppDir, }: {
config: NextConfigComplete;
optOutBundlingPackageRegex: RegExp;
dir: string;
hasAppDir: boolean;
}): (context: string, request: string, dependencyType: string, layer: WebpackLayerName | null, getResolve: (options: any) => (resolveContext: string, resolveRequest: string) => Promise<[string | null, boolean]>) => Promise<any>;