mirror of
https://github.com/fosrl/pangolin.git
synced 2025-06-21 12:48:59 +02:00
9 lines
251 B
TypeScript
9 lines
251 B
TypeScript
|
import path from "path";
|
||
|
import { fileURLToPath } from "url";
|
||
|
import { existsSync } from "fs";
|
||
|
|
||
|
export const __FILENAME = fileURLToPath(import.meta.url);
|
||
|
export const __DIRNAME = path.dirname(__FILENAME);
|
||
|
|
||
|
export const APP_PATH = path.join("config");
|