esbuild-wasm-bundler/jsapi.tsx
2024-06-14 17:07:50 -04:00

10 lines
296 B
TypeScript

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