turbo.json 351 B

12345678910111213141516171819202122
  1. {
  2. "$schema": "https://turbo.build/schema.json",
  3. "pipeline": {
  4. "build": {
  5. "outputs": ["dist/**"],
  6. "dependsOn": ["^build"],
  7. "cache": false
  8. },
  9. "lint": {},
  10. "dev": {
  11. "cache": false,
  12. "persistent": true
  13. },
  14. "clean": {
  15. "cache": false
  16. },
  17. "test": {
  18. "dependsOn": []
  19. }
  20. }
  21. }