Files
website/turbo.json
Julien Valverdé 1cd70b3ed0
All checks were successful
Build / build (push) Successful in 48s
Lint / lint (push) Successful in 13s
09-22-2025 (#7)
Co-authored-by: Julien Valverdé <julien.valverde@mailo.com>
Reviewed-on: #7
2025-09-20 04:49:37 +02:00

26 lines
538 B
JSON

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