bpms_site/.svn/pristine/4b/4bf7ebb372ee71d923691232acb23625c3afc321.svn-base
2025-11-02 16:38:49 +03:30

15 lines
540 B
Plaintext

import { Span } from '../../../trace';
import { NextJsLoaderContext } from './types';
export default function transform(this: NextJsLoaderContext, source: string, inputSourceMap: object | null | undefined, loaderOptions: any, filename: string, target: string, parentSpan: Span): {
code: string;
map: {
version: number;
sources: string[];
names: string[];
sourceRoot?: string | undefined;
sourcesContent?: string[] | undefined;
mappings: string;
file: string;
} | null;
};