turbo.json 281 B

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