| 1234567891011121314151617181920 |
- {
- "$schema": "https://turborepo.com/schema.json",
- "globalEnv": ["CI", "OPENCODE_DISABLE_SHARE"],
- "globalPassThroughEnv": ["CI", "OPENCODE_DISABLE_SHARE"],
- "tasks": {
- "typecheck": {},
- "build": {
- "dependsOn": ["^build"],
- "outputs": ["dist/**"]
- },
- "opencode#test": {
- "dependsOn": ["^build"],
- "outputs": []
- },
- "@opencode-ai/app#test": {
- "dependsOn": ["^build"],
- "outputs": []
- }
- }
- }
|