import Bundle, { type ImportMap} from "./mod.ts"; import Config from "./test/deno.json" with {type:"json"}; const path = import.meta.resolve("./test/"); const {outputFiles} = await Bundle(path, {entryPoints:["./app.tsx"]}, Config); for(const item of outputFiles) { console.log(item.text); }