Files
sim/turbo.json

35 lines
620 B
JSON

{
"$schema": "https://v2-8-0.turborepo.dev/schema.json",
"envMode": "loose",
"tasks": {
"build": {
"dependsOn": ["^build"],
"inputs": ["$TURBO_DEFAULT$", ".env*"],
"outputs": [".next/**", "!.next/cache/**", "dist/**"]
},
"dev": {
"persistent": true,
"cache": false
},
"start": {
"cache": false
},
"test": {
"dependsOn": ["^build"],
"outputs": []
},
"format": {
"outputs": []
},
"format:check": {
"outputs": []
},
"lint": {
"outputs": []
},
"type-check": {
"outputs": []
}
}
}