Files
LlamaIndexTS/turbo.json
T
2025-03-09 01:45:28 -08:00

25 lines
494 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": ["**/.env.*", "./tsconfig.json"],
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", "lib/**", ".next/**", "!.next/cache/**"]
},
"lint": {
"dependsOn": ["^build"]
},
"test": {
"dependsOn": ["^build"]
},
"circular-check": {},
"e2e": {
"dependsOn": ["^build"]
},
"dev": {
"cache": false,
"persistent": true
}
}
}