Files
Hubert Bieszczad 54260e3f8d chore: typecheck tests (#626)
* chore: typecheck tests

* chore: add to ci
2026-08-12 07:49:43 +02:00

47 lines
1.1 KiB
JSON

{
"$schema": "https://turbo.build/schema.json",
"ui": "tui",
"tasks": {
"build": {
"cache": false
},
"dev": {
"cache": false,
"interactive": true
},
"check:typescript": {},
"uniwind#check:typescript:test": {},
"lint": {},
"//#check:format": {},
"circular:check": {},
"precommit": {
"dependsOn": [
"lint",
"check:typescript",
"uniwind#check:typescript:test",
"circular:check",
"test:native",
"test:web",
"test:types",
"//#check:format"
]
},
"test": {
"dependsOn": ["test:native", "test:web", "test:types", "test:e2e"]
},
"test:native": {
"cache": false
},
"test:web": {
"cache": false
},
"test:types": {
"dependsOn": ["build"],
"cache": false
},
"test:e2e": {
"cache": false
}
}
}