mirror of
https://github.com/run-llama/LlamaIndexTS.git
synced 2026-06-30 22:17:54 -04:00
31 lines
555 B
JSON
31 lines
555 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"globalDependencies": ["**/.env.*", "./tsconfig.json"],
|
|
"tasks": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": [
|
|
"dist/**",
|
|
"lib/**",
|
|
".next/**",
|
|
"!.next/cache/**",
|
|
"*/dist/**"
|
|
]
|
|
},
|
|
"lint": {
|
|
"dependsOn": ["^build"]
|
|
},
|
|
"test": {
|
|
"dependsOn": ["^build"]
|
|
},
|
|
"circular-check": {},
|
|
"e2e": {
|
|
"dependsOn": ["^build"]
|
|
},
|
|
"dev": {
|
|
"cache": false,
|
|
"persistent": true
|
|
}
|
|
}
|
|
}
|