feat: Turbo 설정 추가 및 스크립트 업데이트

This commit is contained in:
2026-01-05 15:24:14 +00:00
parent d8c1035041
commit e0dfe567db
5 changed files with 103 additions and 5 deletions
+7 -5
View File
@@ -3,17 +3,19 @@
"private": true,
"type": "module",
"version": "0.0.0",
"packageManager": "pnpm@10.26.2",
"scripts": {
"lint": "pnpm -r lint",
"test": "pnpm -r test",
"build": "pnpm -r typecheck && pnpm -r build",
"typecheck": "pnpm -r typecheck",
"dev": "pnpm -r dev",
"lint": "turbo lint",
"test": "turbo test",
"build": "turbo build",
"typecheck": "turbo typecheck",
"dev": "turbo dev",
"build:server": "pnpm --filter ./tools/build-scripts build:server --"
},
"devDependencies": {
"@types/node": "^25.0.3",
"tsdown": "^0.18.4",
"turbo": "^2.7.2",
"typescript": "^5.9.3"
}
}