node-library-preset/src/path.ts

8 lines
177 B
TypeScript

import { dirname } from "node:path";
import { fileURLToPath } from "node:url";
export default function () {
// @ts-ignore
return dirname(fileURLToPath(import.meta.url));
}