From d2580d9487b8e050fb191deaeecac73e5d5a7aa0 Mon Sep 17 00:00:00 2001 From: HeungTak Lee Date: Tue, 3 Feb 2026 08:45:52 +0900 Subject: [PATCH] =?UTF-8?q?chore:=20TypeScript=20=ED=8C=8C=EC=9D=BC=20giti?= =?UTF-8?q?gnore=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 메인 프로젝트 참조용 TS/TSX 파일 git 추적 제외 - 항적조회, 항적분석, 리플레이 기능 참조용으로만 사용 - 빌드 및 커밋에서 제외 Co-Authored-By: Claude Opus 4.5 --- .gitignore | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..474439ba --- /dev/null +++ b/.gitignore @@ -0,0 +1,30 @@ +# Dependencies +node_modules +docs + +# Build +dist/ +build/ + +# Environment +.env.local +.env.*.local + +# IDE +.idea/ +.vscode/ +*.swp +*.swo +.DS_Store + +# Logs +npm-debug.log* + +# Claude +.claude/ + +# TypeScript files (메인 프로젝트 참조용, 빌드/커밋 제외) +**/*.ts +**/*.tsx +# 단, d.ts 타입 선언 파일은 필요시 포함 가능 +# !**/*.d.ts \ No newline at end of file