nest-cli.json 592 B

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