Files
core2026/turbo.json
T

36 lines
922 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"ui": "tui",
"globalPassThroughEnv": ["NODE_OPTIONS", "RAYON_NUM_THREADS"],
"tasks": {
"build": {
"dependsOn": ["^build", "typecheck"],
"env": ["NODE_ENV"],
"inputs": ["$TURBO_DEFAULT$", ".env*"],
"outputs": ["dist/**"]
},
"typecheck": {
"dependsOn": ["^build", "prisma:generate"],
"cache": true
},
"prisma:generate": {
"inputs": ["$TURBO_DEFAULT$"],
"outputs": ["node_modules/.prisma/client/**", "prisma/generated/**"],
"cache": true
},
"lint": {
"cache": true
},
"lint:fix": {
"cache": false
},
"test": {
"cache": true
},
"dev": {
"cache": false,
"persistent": true
}
}
}