Files
effect-view/turbo.json
T
Julien Valverdé d32389fa81
Lint / lint (push) Successful in 55s
Fix CI
2026-07-26 00:13:35 +02:00

35 lines
570 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"tasks": {
"lint:tsc": {
"dependsOn": ["^build"],
"cache": false
},
"lint:biome": {
"cache": false
},
"test": {
"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
}
}
}