Files
tuono/turbo.json
T
2025-02-07 12:07:15 +01:00

27 lines
526 B
JSON

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