nextui/turbo.json
2022-11-06 05:42:45 +08:00

41 lines
753 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"baseBranch": "origin/main",
"globalDependencies": ["tsconfig.json"],
"pipeline": {
"build": {
"dependsOn": ["^build"],
"outputs": [".next/**", "dist/**", "lib/**"]
},
"build:fast": {
"outputs": ["dist/**"],
"dependsOn": ["^build:fast"]
},
"typecheck": {
"cache": false,
"dependsOn": ["^typecheck"]
},
"start": {
"dependsOn": ["^build"],
"outputs": []
},
"test": {
"dependsOn": ["build"],
"outputs": []
},
"clean": {
"cache": false,
"outputs": []
},
"lint": {
"outputs": []
},
"dev": {
"cache": false
},
"sb": {
"cache": false
}
}
}