chore: TypeScript 파일 gitignore 추가
- 메인 프로젝트 참조용 TS/TSX 파일 git 추적 제외 - 항적조회, 항적분석, 리플레이 기능 참조용으로만 사용 - 빌드 및 커밋에서 제외 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
부모
8a159ce809
커밋
d2580d9487
30
.gitignore
vendored
Normal file
30
.gitignore
vendored
Normal file
@ -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
|
||||
불러오는 중...
Reference in New Issue
Block a user