Initial project upload

This commit is contained in:
Mohamed Mathar Irfan
2026-07-28 17:57:02 +05:30
commit ed6610d5d8
23919 changed files with 3003316 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
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;
export declare function resolveExternal(dir: string, esmExternalsConfig: NextConfigComplete['experimental']['esmExternals'], context: string, request: string, isEsmRequested: boolean, optOutBundlingPackages: string[], 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, optOutBundlingPackages, optOutBundlingPackageRegex, dir, }: {
config: NextConfigComplete;
optOutBundlingPackages: string[];
optOutBundlingPackageRegex: RegExp;
dir: string;
}): (context: string, request: string, dependencyType: string, layer: WebpackLayerName | null, getResolve: (options: any) => (resolveContext: string, resolveRequest: string) => Promise<[string | null, boolean]>) => Promise<any>;