10 lines
322 B
JavaScript
10 lines
322 B
JavaScript
// Shim globals in esm bundle
|
|
import path from 'node:path'
|
|
import { fileURLToPath } from 'node:url'
|
|
|
|
const getFilename = () => fileURLToPath(import.meta.url)
|
|
const getDirname = () => path.dirname(getFilename())
|
|
|
|
export const __dirname = /* @__PURE__ */ getDirname()
|
|
export const __filename = /* @__PURE__ */ getFilename()
|