turbo.json 385 B

1234567891011121314151617181920212223
  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. "dependsOn": ["^build"]
  15. },
  16. "clean": {
  17. "cache": false
  18. },
  19. "test": {
  20. "dependsOn": ["^build"]
  21. }
  22. }
  23. }