turbo.json 338 B

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