consts.ts 251 B

12345678
  1. import path from "path";
  2. import { fileURLToPath } from "url";
  3. import { existsSync } from "fs";
  4. export const __FILENAME = fileURLToPath(import.meta.url);
  5. export const __DIRNAME = path.dirname(__FILENAME);
  6. export const APP_PATH = path.join("config");