diff --git a/src/index.ts b/src/index.ts index 6abadfd..da8cb5b 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,13 +1,11 @@ -import { dirname, resolve } from "node:path"; -import { fileURLToPath } from "node:url"; +import { resolve } from "node:path"; import type { PresetAsset } from "presetter-types"; let DIR: string; if (typeof __dirname === "undefined") { - // @ts-ignore - DIR = dirname(fileURLToPath(import.meta.url)); + DIR = (await import("./path.js")).default(); } else { DIR = __dirname; } diff --git a/src/path.ts b/src/path.ts new file mode 100644 index 0000000..11d9426 --- /dev/null +++ b/src/path.ts @@ -0,0 +1,6 @@ +import { dirname } from "node:path"; +import { fileURLToPath } from "node:url"; + +export default function () { + return dirname(fileURLToPath(import.meta.url)); +}