path.ts 137 B

12345
  1. import path from 'path';
  2. const appDir = process.cwd();
  3. export const resolveApp = (relativePath) => path.resolve(appDir, relativePath);