allinssl/frontend/turbo.json

31 lines
680 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"ui": "tui",
"globalEnv": ["NODE_ENV"],
"tasks": {
"build": {
"dependsOn": ["^build"],
"inputs": ["$TURBO_DEFAULT$", ".env*"],
"env": ["NODE_ENV"],
"outputs": [".next/**", "!.next/cache/**", "dist/**"],
"outputLogs": "new-only"
},
"lint": {
"dependsOn": ["^lint"]
},
"check-types": {
"dependsOn": ["^check-types"]
},
"dev": {
"cache": false,
"persistent": true,
"env": ["NODE_ENV"]
},
"@baota/vite-plugin-random-cache#build": {
"dependsOn": ["^build"],
"inputs": ["$TURBO_DEFAULT$"],
"outputs": []
}
}
}