Skip to content

Commit

Permalink
chore: turborepo 설정 파일 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
krokerdile committed Jan 9, 2025
1 parent 11ecec6 commit a83d1b7
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions turbo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": ["**/.env.*local"],
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", ".next/**"]
},
"dev": {
"cache": false,
"persistent": true
},
"lint": {
"outputs": []
},
"clean": {
"cache": false
},
"test": {
"dependsOn": ["build"],
"outputs": ["coverage/**"],
"inputs": ["src/**/*.tsx", "src/**/*.ts", "test/**/*.ts"]
},
"typecheck": {
"outputs": []
},
"test:ci": {
"outputs": ["coverage/**"],
"dependsOn": ["build"]
}
}
}

0 comments on commit a83d1b7

Please sign in to comment.