bpms_site/.svn/pristine/d5/d555a50eb17bf2184cd81b89890c0352f7f9a221.svn-base
2025-11-02 16:38:49 +03:30

24 lines
746 B
Plaintext

import type { NextConfig } from '../../../../types';
import { type BundleType } from '../../swc/options';
export interface SWCLoaderOptions {
rootDir: string;
isServer: boolean;
pagesDir?: string;
appDir?: string;
hasReactRefresh: boolean;
optimizeServerReact?: boolean;
nextConfig: NextConfig;
jsConfig: any;
supportedBrowsers: string[] | undefined;
swcCacheDir: string;
bundleTarget: BundleType;
hasServerComponents?: boolean;
isServerLayer: boolean;
optimizeBarrelExports?: {
wildcard: boolean;
};
}
export declare function pitch(this: any): void;
export default function swcLoader(this: any, inputSource: string, inputSourceMap: any): void;
export declare const raw = true;