Files
effect-fc/turbo.json
Julien Valverdé 520ee8ac1f
Some checks failed
Lint / lint (push) Failing after 11s
Change project setup
2025-10-01 13:23:11 +02:00

27 lines
425 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"tasks": {
"lint:tsc": {
"cache": false
},
"lint:biome": {
"cache": false
},
"build": {
"dependsOn": ["^build"],
"inputs": ["./src/**"],
"outputs": ["./dist/**"]
},
"clean:cache": {
"cache": false
},
"clean:dist": {
"cache": false
},
"clean:modules": {
"cache": false
}
}
}