mirror of
https://github.com/EthanShoeDev/fressh.git
synced 2026-01-11 06:12:51 +00:00
18 lines
355 B
JSON
18 lines
355 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"tasks": {
|
|
"build": {
|
|
"outputs": ["lib/**", "android/**", "ios/**", "cpp/**", "src/**"],
|
|
"dependsOn": ["lint:rust"]
|
|
},
|
|
"typecheck": {
|
|
"dependsOn": ["build"]
|
|
},
|
|
"lint": {
|
|
"with": ["typecheck", "lint:rust"]
|
|
},
|
|
"lint:rust": {}
|
|
},
|
|
"extends": ["//"]
|
|
}
|