13 lines
255 B
TypeScript
13 lines
255 B
TypeScript
import Bundler from "./bundle.ts";
|
|
|
|
const result = Bundler({
|
|
entry: "scripts/bundle_entry.ts",
|
|
outdir: "dist",
|
|
inlineImports: true,
|
|
minify: true,
|
|
codeSplitting: true,
|
|
platform: "browser",
|
|
noLock: true,
|
|
});
|
|
|
|
console.log(result); |