turbo.json 324 B

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