chatgpt-api/turbo.json

45 wiersze
1.0 KiB
JSON
Czysty Zwykły widok Historia

2025-04-04 10:53:50 +00:00
{
"$schema": "https://turbo.build/schema.json",
"ui": "stream",
"tasks": {
"build": {
"dependsOn": ["^build"],
2025-06-16 08:20:27 +00:00
"outputs": ["dist/**", ".next/**", "!.next/cache/**"],
2025-06-25 09:31:27 +00:00
"outputLogs": "new-only",
"inputs": ["$TURBO_DEFAULT$", ".env", ".env.*"]
2025-04-04 10:53:50 +00:00
},
"clean": {
"cache": false,
"dependsOn": ["^clean"]
},
"test": {
"dependsOn": ["test:format", "test:lint", "test:typecheck", "test:unit"]
},
"test:lint": {
2025-06-13 00:20:09 +00:00
"dependsOn": ["//#test:lint", "^test:lint"],
2025-04-04 10:53:50 +00:00
"outputLogs": "errors-only"
},
"test:typecheck": {
"dependsOn": ["^test:typecheck"],
"outputLogs": "errors-only"
},
"test:unit": {
"dependsOn": ["^test:unit"],
"outputLogs": "errors-only"
},
"test:format": {
"dependsOn": ["//#test:format", "^test:format"]
},
"//#test:format": {},
2025-06-13 00:20:09 +00:00
"//#test:lint": {},
2025-04-04 10:53:50 +00:00
"dev": {
"cache": false,
"persistent": true
2025-06-28 06:43:42 +00:00
},
"docs": {
"cache": false,
"persistent": true
2025-04-04 10:53:50 +00:00
}
}
}