feat(create-turbo): apply official-starter transform

This commit is contained in:
Turbobot
2025-03-17 02:36:25 -06:00
committed by Mauricio Siu
parent 731fd5a41c
commit 4ed66e3040
65 changed files with 6007 additions and 0 deletions

21
turborepo/turbo.json Normal file
View File

@@ -0,0 +1,21 @@
{
"$schema": "https://turbo.build/schema.json",
"ui": "tui",
"tasks": {
"build": {
"dependsOn": ["^build"],
"inputs": ["$TURBO_DEFAULT$", ".env*"],
"outputs": [".next/**", "!.next/cache/**"]
},
"lint": {
"dependsOn": ["^lint"]
},
"check-types": {
"dependsOn": ["^check-types"]
},
"dev": {
"cache": false,
"persistent": true
}
}
}