mirror of
https://github.com/Lifeforge-app/lifeforge.git
synced 2026-06-28 06:46:24 +00:00
22 lines
403 B
JSON
22 lines
403 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"tasks": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["dist/**", "client/dist/**", "server/dist/**"],
|
|
"env": ["VITE_API_HOST"]
|
|
},
|
|
"dev": {
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"types": {
|
|
"dependsOn": ["^types"]
|
|
},
|
|
"lint": {},
|
|
"test": {
|
|
"dependsOn": ["build"]
|
|
}
|
|
}
|
|
}
|