UNPKG

create-expo-cljs-app

Version:

Create a react native application with Expo and Shadow-CLJS!

15 lines (14 loc) 489 B
import type { SourceMapOptions } from "./index"; export interface RawSourceMap { version: number; file: string; sources: Array<string>; sourceRoot?: string; sourcesContent?: Array<string>; mappings: string; names: Array<string>; } /** * Generate a simple source map indicating that each line maps directly to the original line. */ export default function computeSourceMap(code: string, filePath: string, { compiledFilename }: SourceMapOptions): RawSourceMap;