turbo.json 389 B

123456789101112131415161718192021
  1. {
  2. "$schema": "https://turbo.build/schema.json",
  3. "tasks": {
  4. "lint": {},
  5. "check-types": {},
  6. "test": {
  7. "dependsOn": ["@roo-code/types#build"]
  8. },
  9. "format": {},
  10. "clean": {
  11. "cache": false
  12. },
  13. "build": {
  14. "outputs": ["dist/**"],
  15. "inputs": ["src/**", "package.json", "tsconfig.json", "tsup.config.ts", "vite.config.ts"]
  16. },
  17. "watch:tsc": {
  18. "cache": false
  19. }
  20. }
  21. }