buildmymcpserver/turbo.json

22 lines
414 B
JSON
Raw Permalink Normal View History

{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": [".env", ".env.local"],
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": [".next/**", "!.next/cache/**", "dist/**"]
},
"dev": {
"cache": false,
"persistent": true
},
"typecheck": {
"dependsOn": ["^build"],
"outputs": []
},
"lint": {
"outputs": []
}
}
}