mirror of
https://github.com/labring/FastGPT.git
synced 2026-05-08 01:08:43 +08:00
32 lines
610 B
JSON
32 lines
610 B
JSON
{
|
|
"$schema": "https://turborepo.com/schema.json",
|
|
"ui": "tui",
|
|
"tasks": {
|
|
"dev": {
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": [".next/**", "dist/**", "worker/**"]
|
|
},
|
|
"lint": {
|
|
"outputs": []
|
|
},
|
|
"test": {
|
|
"outputs": ["coverage/**", "test-results.json"]
|
|
},
|
|
"test:integration": {
|
|
"cache": false,
|
|
"outputs": ["test-results.integration.json"]
|
|
},
|
|
"typecheck": {
|
|
"outputs": []
|
|
},
|
|
"build:workers": {
|
|
"cache": false,
|
|
"outputs": ["worker/**"]
|
|
}
|
|
}
|
|
}
|