Layout scaffolding for Web apps.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

31 lines
511 B

  1. {
  2. "extends": "nx/presets/npm.json",
  3. "tasksRunnerOptions": {
  4. "default": {
  5. "runner": "nx/tasks-runners/default",
  6. "options": {
  7. "cacheableOperations": [
  8. "prepublishOnly",
  9. "build",
  10. "type-check",
  11. "lint",
  12. "clean",
  13. "watch",
  14. "dev",
  15. "test"
  16. ]
  17. }
  18. }
  19. },
  20. "targetDefaults": {
  21. "build": {
  22. "dependsOn": [
  23. "^build"
  24. ]
  25. }
  26. },
  27. "affected": {
  28. "defaultBase": "master"
  29. }
  30. }