33 lines
651 B
JSON
33 lines
651 B
JSON
{
|
|
"$schema": "https://turborepo.org/schema.json",
|
|
"pipeline": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["dist/**"]
|
|
},
|
|
"website#build": {
|
|
"dependsOn": ["^build"],
|
|
"env": ["TAMAGUI_TARGET", "TAMAGUI_DISABLE_WARN_DYNAMIC_LOAD"],
|
|
"outputs": [".next/**", "!.next/cache/**"]
|
|
},
|
|
"dev": {
|
|
"cache": false
|
|
},
|
|
"lint": {
|
|
"outputs": []
|
|
},
|
|
"typecheck": {
|
|
"outputs": []
|
|
},
|
|
"test": {
|
|
"outputs": [],
|
|
"dependsOn": []
|
|
},
|
|
"clean": {
|
|
"cache": false
|
|
}
|
|
},
|
|
"globalEnv": ["GITHUB_TOKEN"],
|
|
"globalDependencies": ["tsconfig.base.json"]
|
|
}
|