nx.json 629 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "$schema": "./node_modules/nx/schemas/nx-schema.json",
  3. "tasksRunnerOptions": {
  4. "default": {
  5. "runner": "nx/tasks-runners/default",
  6. "options": {
  7. "cacheableOperations": [
  8. "build",
  9. "lint",
  10. "test",
  11. "e2e"
  12. ]
  13. }
  14. }
  15. },
  16. "targetDefaults": {
  17. "build": {
  18. "dependsOn": [
  19. "^build"
  20. ],
  21. "inputs": [
  22. "production",
  23. "^production"
  24. ]
  25. }
  26. },
  27. "namedInputs": {
  28. "default": [
  29. "{projectRoot}/**/*",
  30. "sharedGlobals"
  31. ],
  32. "production": [
  33. "default"
  34. ],
  35. "sharedGlobals": []
  36. }
  37. }