node-library-preset/src/path.ts

8 lines
177 B
TypeScript
Raw Permalink Normal View History

import { dirname } from "node:path";
import { fileURLToPath } from "node:url";
export default function () {
2023-06-25 21:09:20 +00:00
// @ts-ignore
return dirname(fileURLToPath(import.meta.url));
}