nest-cli.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "$schema": "https://json.schemastore.org/nest-cli",
  3. "collection": "@nestjs/schematics",
  4. "sourceRoot": "apps/microservices/src",
  5. "compilerOptions": {
  6. "deleteOutDir": true,
  7. "webpack": true,
  8. "tsConfigPath": "apps/microservices/tsconfig.app.json"
  9. },
  10. "monorepo": true,
  11. "root": "apps/microservices",
  12. "projects": {
  13. "fis-fingerprint": {
  14. "type": "application",
  15. "root": "apps/fis-fingerprint",
  16. "entryFile": "main",
  17. "sourceRoot": "apps/fis-fingerprint/src",
  18. "compilerOptions": {
  19. "tsConfigPath": "apps/fis-fingerprint/tsconfig.app.json"
  20. }
  21. },
  22. "fis-verification": {
  23. "type": "application",
  24. "root": "apps/fis-verification",
  25. "entryFile": "main",
  26. "sourceRoot": "apps/fis-verification/src",
  27. "compilerOptions": {
  28. "tsConfigPath": "apps/fis-verification/tsconfig.app.json"
  29. }
  30. },
  31. "microservices": {
  32. "type": "application",
  33. "root": "apps/microservices",
  34. "entryFile": "main",
  35. "sourceRoot": "apps/microservices/src",
  36. "compilerOptions": {
  37. "tsConfigPath": "apps/microservices/tsconfig.app.json"
  38. }
  39. },
  40. "verification": {
  41. "type": "application",
  42. "root": "apps/verification",
  43. "entryFile": "main",
  44. "sourceRoot": "apps/verification/src",
  45. "compilerOptions": {
  46. "tsConfigPath": "apps/verification/tsconfig.app.json"
  47. }
  48. }
  49. }
  50. }