turbo.json 254 B

1234567891011121314
  1. {
  2. "$schema": "https://turborepo.com/schema.json",
  3. "tasks": {
  4. "typecheck": {},
  5. "build": {
  6. "dependsOn": ["^build"],
  7. "outputs": ["dist/**"]
  8. },
  9. "opencode#test": {
  10. "dependsOn": ["^build"],
  11. "outputs": []
  12. }
  13. }
  14. }