node-library-preset/src/path.ts

7 lines
161 B
TypeScript
Raw Normal View History

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