index.ts 402 B

1234567891011121314151617181920
  1. import path from 'path';
  2. /**
  3. * 获取项目根路径
  4. * @descrition 末尾不带斜杠
  5. */
  6. export function getRootPath() {
  7. return path.resolve(process.cwd());
  8. }
  9. /**
  10. * 获取项目src路径
  11. * @param srcName - src目录名称(默认: "src")
  12. * @descrition 末尾不带斜杠
  13. */
  14. export function getSrcPath(srcName = 'src') {
  15. const rootPath = getRootPath();
  16. return `${rootPath}/${srcName}`;
  17. }