SurfSense/turbo.json

19 lines
348 B
JSON
Raw Normal View History

2024-07-30 16:00:11 -07:00
{
"$schema": "https://turbo.build/schema.json",
"ui": "tui",
"tasks": {
2024-07-30 16:00:11 -07:00
"build": {
"dependsOn": ["^build"],
"inputs": ["$TURBO_DEFAULT$", ".env*"],
"outputs": [".next/**", "!.next/cache/**"]
2024-07-30 16:00:11 -07:00
},
"lint": {
"dependsOn": ["^lint"]
2024-07-30 16:00:11 -07:00
},
"dev": {
"cache": false,
"persistent": true
}
}
}