esbuild-wasm-bundler/jsapi.tsx

10 lines
296 B
TypeScript
Raw Normal View History

2024-06-14 17:07:50 -04:00
import Bundle, { type ImportMap} from "./mod.ts";
import Config from "./test/deno.json" with {type:"json"};
2024-06-12 17:05:41 -04:00
2024-06-14 17:07:50 -04:00
const path = import.meta.resolve("./test/");
const {outputFiles} = await Bundle(path, {entryPoints:["./app.tsx"]}, Config);
for(const item of outputFiles)
{
console.log(item.text);
}