feat: eslint 적용 및 관련 코드 일괄 수정
This commit is contained in:
+29
-26
@@ -1,29 +1,32 @@
|
||||
{
|
||||
"$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
|
||||
"$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
|
||||
},
|
||||
"lint:fix": {
|
||||
"cache": false
|
||||
},
|
||||
"test": {
|
||||
"cache": true
|
||||
},
|
||||
"dev": {
|
||||
"cache": false,
|
||||
"persistent": true
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user