turbo.json 297 B

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