ethers.js/src.ts/_admin/utils/path.ts
2022-09-05 16:14:43 -04:00

15 lines
404 B
TypeScript

import { dirname, resolve as _resolve } from "path";
import { fileURLToPath } from 'url';
const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);
export const ROOT = _resolve(__dirname, "../../../");
console.log(ROOT);
export function resolve(...args: Array<string>): string {
args = args.slice();
args.unshift(ROOT);
return _resolve.apply(null, args);
}