feat: tsconfig 및 package.json 수정으로 타입 체크 및 빌드 설정 개선

This commit is contained in:
2025-12-28 16:32:43 +00:00
parent 54252dc6b4
commit f7d9d423fa
27 changed files with 138 additions and 49 deletions
+7 -6
View File
@@ -1,12 +1,13 @@
{
"extends": "./tsconfig.json",
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"rootDir": "../..",
"rootDir": "src",
"outDir": "dist",
"composite": false
},
"include": [
"src",
"../../packages/common/src",
"../../packages/logic/src"
"include": ["src"],
"references": [
{ "path": "../../packages/common" },
{ "path": "../../packages/logic" }
]
}