프로젝트 초기 설정: 패키지 및 구성 파일 추가

This commit is contained in:
2025-12-27 04:19:37 +00:00
parent af35491b2d
commit b445a6df68
30 changed files with 284 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "CommonJS",
"moduleResolution": "Node",
"lib": ["ES2022"],
"strict": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true
}
}