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

This commit is contained in:
Turbobot
2025-10-06 20:52:55 +02:00
committed by Andras Bacsai
parent 93fc63b432
commit 533a77ab21
62 changed files with 4644 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
{
"$schema": "https://turborepo.com/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
}
}
}