Closed JustinGrote closed 1 year ago
import { bundle } from "https://deno.land/x/emit@0.12.0/mod.ts"; const result = await bundle("./src/worker.ts", { compilerOptions: { inlineSourceMap: false, inlineSources: false, sourceMap: true } }) console.log(result.code) console.log("SOURCE MAP") console.log(result.map)
Always generates a base64 sourcemap inline URL and the map property is undefined. I've tried all sorts of combinations of these settings with the same result.
Should be fixed with https://github.com/denoland/deno_emit/pull/63
Always generates a base64 sourcemap inline URL and the map property is undefined. I've tried all sorts of combinations of these settings with the same result.