nest-cli.json 718 B

12345678910111213141516171819202122232425262728
  1. {
  2. "collection": "@nestjs/schematics",
  3. "sourceRoot": "apps/box-mgnt-api/src",
  4. "entryFile": "main",
  5. "compilerOptions": {
  6. "tsConfigPath": "apps/box-mgnt-api/tsconfig.json"
  7. },
  8. "projects": {
  9. "box-mgnt-api": {
  10. "type": "application",
  11. "root": "apps/box-mgnt-api",
  12. "entryFile": "main",
  13. "sourceRoot": "apps/box-mgnt-api/src",
  14. "compilerOptions": {
  15. "tsConfigPath": "apps/box-mgnt-api/tsconfig.json"
  16. }
  17. },
  18. "box-app-api": {
  19. "type": "application",
  20. "root": "apps/box-app-api",
  21. "entryFile": "main",
  22. "sourceRoot": "apps/box-app-api/src",
  23. "compilerOptions": {
  24. "tsConfigPath": "apps/box-app-api/tsconfig.json"
  25. }
  26. }
  27. }
  28. }