nx.json 509 B

12345678910111213141516171819202122
  1. {
  2. "$schema": "./node_modules/nx/schemas/nx-schema.json",
  3. "tasksRunnerOptions": {
  4. "default": {
  5. "runner": "nx/tasks-runners/default",
  6. "options": {
  7. "cacheableOperations": ["build", "lint", "test", "e2e"]
  8. }
  9. }
  10. },
  11. "targetDefaults": {
  12. "build": {
  13. "dependsOn": ["^build"],
  14. "inputs": ["production", "^production"]
  15. }
  16. },
  17. "namedInputs": {
  18. "default": ["{projectRoot}/**/*", "sharedGlobals"],
  19. "production": ["default"],
  20. "sharedGlobals": []
  21. }
  22. }