nest-cli.json 890 B

1234567891011121314151617181920212223242526272829303132
  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",
  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. }
  32. }