nest-cli.json 1.2 KB

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