(...args: string[])
| 529 | export const APP_ROOT = path.resolve(path.dirname(fileURLToPath(import.meta.url)), '..'); |
| 530 | |
| 531 | export function resolvePathFromAppRoot(...args: string[]) { |
| 532 | return path.resolve(APP_ROOT, ...args); |
| 533 | } |
| 534 | |
| 535 | export async function fileExists(filename: string): Promise<boolean> { |
| 536 | try { |
no test coverage detected