Files
Webklar.com/node_modules/next/dist/build/babel/loader/transform.d.ts
Basilosaurusrex f027651f9b main repo
2025-11-24 18:09:40 +01:00

15 lines
540 B
TypeScript

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;
};