package.lib.jiti.mjs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jiti Show documentation
Show all versions of jiti Show documentation
Runtime typescript and ESM support for Node.js
The newest version!
import { createRequire } from "node:module";
import _createJiti from "../dist/jiti.cjs";
import transform from "../dist/babel.cjs";
function onError(err) {
throw err; /* ↓ Check stack trace ↓ */
}
const nativeImport = (id) => import(id);
export function createJiti(id, opts = {}) {
if (!opts.transform) {
opts = { ...opts, transform };
}
return _createJiti(id, opts, {
onError,
nativeImport,
createRequire,
});
}
export default createJiti;
© 2015 - 2025 Weber Informatics LLC | Privacy Policy