Files
website/turbo.json
Julien Valverdé 26bc15c15b
All checks were successful
Lint / lint (push) Successful in 12s
Regenerate lockfile
2025-10-13 00:43:00 +02:00

26 lines
438 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
}
}
}