Files
tuono/turbo.json
T
2024-12-01 10:07:35 +01:00

24 lines
429 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": ["eslint.config.js"],
"tasks": {
"lint": {
"dependsOn": ["^build"]
},
"format": {},
"format:check": {},
"types": {
"dependsOn": ["^build"]
},
"test": {},
"test:watch": {},
"build": {
"outputs": ["dist/**"],
"dependsOn": ["^build"]
},
"dev": {
"dependsOn": ["^build"]
}
}
}