turbo.json 345 B

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