44 lines
926 B
JSON
44 lines
926 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"ui": "tui",
|
|
"globalDependencies": [".env", ".env.*"],
|
|
"globalEnv": [
|
|
"NODE_ENV",
|
|
"PAYLOAD_SECRET",
|
|
"DATABASE_URI",
|
|
"PAYLOAD_URL",
|
|
"PUBLIC_PAYLOAD_URL",
|
|
"TYPESENSE_HOST",
|
|
"TYPESENSE_PORT",
|
|
"TYPESENSE_PROTOCOL",
|
|
"TYPESENSE_API_KEY",
|
|
"TYPESENSE_SEARCH_ONLY_API_KEY",
|
|
"PUBLIC_TYPESENSE_HOST",
|
|
"PUBLIC_TYPESENSE_PORT",
|
|
"PUBLIC_TYPESENSE_PROTOCOL",
|
|
"PUBLIC_TYPESENSE_SEARCH_ONLY_API_KEY"
|
|
],
|
|
"tasks": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["dist/**", ".next/**", "!.next/cache/**", "build/**", "storybook-static/**"]
|
|
},
|
|
"dev": {
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"lint": {
|
|
"dependsOn": ["^build"]
|
|
},
|
|
"typecheck": {
|
|
"dependsOn": ["^build"]
|
|
},
|
|
"index": {
|
|
"cache": false
|
|
},
|
|
"clean": {
|
|
"cache": false
|
|
}
|
|
}
|
|
}
|