beesbuild
Version:
构建工具链
18 lines (14 loc) • 408 B
JavaScript
import jiti from "jiti";
import path from "node:path";
const pathname = new URL(".", import.meta.url).pathname;
const mjsPath = path.resolve(pathname, "../es/cli.mjs");
/** @type {import("../es/cli.mjs")} */
const _module = jiti(null, {
"esmResolve": true,
"interopDefault": true,
"alias": {
"beesbuild": "../"
}
})(mjsPath);
export default _module;