feat: tsconfig 설정 개선 및 경로 추가

This commit is contained in:
2025-12-28 12:37:49 +00:00
parent fa22562bb1
commit 4cab4d55c5
15 changed files with 104 additions and 9 deletions
+9
View File
@@ -4,6 +4,15 @@
"module": "NodeNext",
"moduleResolution": "NodeNext",
"lib": ["ES2022"],
"baseUrl": ".",
"paths": {
"@sammo-ts/common": ["packages/common/src/index.ts"],
"@sammo-ts/common/*": ["packages/common/src/*"],
"@sammo-ts/infra": ["packages/infra/src/index.ts"],
"@sammo-ts/infra/*": ["packages/infra/src/*"],
"@sammo-ts/logic": ["packages/logic/src/index.ts"],
"@sammo-ts/logic/*": ["packages/logic/src/*"]
},
"strict": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,