astro-ghostcms/.pnpm-store/v3/files/2b/bd94f8558054115b719ea93b64c...

16 lines
301 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
function onError(err) {
throw err; /* ↓ Check stack trace ↓ */
}
module.exports = function (filename, opts) {
const jiti = require("../dist/jiti");
opts = { onError, ...opts };
if (!opts.transform) {
opts.transform = require("../dist/babel");
}
return jiti(filename, opts);
};