Files
website/turbo.json
Julien Valverdé 99a3fadc3a
All checks were successful
Lint / lint (push) Successful in 41s
Build refactoring
2025-09-20 03:19:45 +02:00

26 lines
539 B
JSON

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