Files
react-godot-renderer/turbo.json
Julien Valverdé b736140b48
Some checks failed
Publish / publish (push) Failing after 11s
Lint / lint (push) Failing after 8s
Add initial files
2025-12-28 14:30:54 +01:00

31 lines
497 B
JSON

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