초기 설정 파일 추가: .gitignore, tsconfig.json, package.json 및 README.md 생성

Generated by Copilot
This commit is contained in:
simple
2025-02-11 10:36:57 +09:00
commit d686f4e2d7
9 changed files with 2861 additions and 0 deletions

15
tsconfig.json Normal file
View File

@ -0,0 +1,15 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "Node16",
"moduleResolution": "Node16",
"outDir": "./build",
"rootDir": "./",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
},
"include": ["./**/*"],
"exclude": ["node_modules", "build"]
}