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

11 lines
389 B
Plaintext

import { NextBabelLoaderOptions, NextJsLoaderContext } from './types';
type BabelConfig = any;
export default function getConfig(this: NextJsLoaderContext, { source, target, loaderOptions, filename, inputSourceMap, }: {
source: string;
loaderOptions: NextBabelLoaderOptions;
target: string;
filename: string;
inputSourceMap?: object | null;
}): BabelConfig;
export {};