JS/JSX 77개 파일을 TS/TSX로 전환하고 JS 원본을 삭제. - stores 7개, map core 6개, hooks 4개 등 전체 모듈 전환 - TypeScript strict 모드, OL/Deck.gl 타입 적용 - .gitignore에서 TS/TSX 무시 규칙 제거 - pre-commit hook: .js,.jsx → .ts,.tsx 확장자 변경 - tsc --noEmit 0 에러, ESLint 0 에러, yarn build 성공 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
36 lines
493 B
Plaintext
36 lines
493 B
Plaintext
# Dependencies
|
|
node_modules
|
|
package-lock.json
|
|
|
|
# Build
|
|
dist/
|
|
build/
|
|
|
|
# Environment (production secrets)
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
**/.DS_Store
|
|
|
|
# Logs
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# OS
|
|
Thumbs.db
|
|
ehthumbs.db
|
|
Desktop.ini
|
|
|
|
# Claude Code (개인 파일만 무시, 팀 파일은 추적)
|
|
.claude/settings.local.json
|
|
.claude/scripts/
|
|
|
|
# TypeScript config (vite.config.ts 등은 추적)
|
|
# tsconfig*.json은 추적
|