feat: Turbo 설정 추가 및 스크립트 업데이트
This commit is contained in:
+29
@@ -0,0 +1,29 @@
|
||||
{
|
||||
"$schema": "https://turbo.build/schema.json",
|
||||
"ui": "tui",
|
||||
"tasks": {
|
||||
"build": {
|
||||
"dependsOn": ["^build", "typecheck"],
|
||||
"outputs": ["dist/**"]
|
||||
},
|
||||
"typecheck": {
|
||||
"dependsOn": ["^typecheck", "prisma:generate"],
|
||||
"cache": true
|
||||
},
|
||||
"prisma:generate": {
|
||||
"inputs": ["prisma/*.prisma"],
|
||||
"outputs": ["node_modules/.prisma/client/**", "prisma/generated/**"],
|
||||
"cache": true
|
||||
},
|
||||
"lint": {
|
||||
"cache": true
|
||||
},
|
||||
"test": {
|
||||
"cache": true
|
||||
},
|
||||
"dev": {
|
||||
"cache": false,
|
||||
"persistent": true
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user