Skip to content

Commit

Permalink
[Docs] - setting PR & ISSUE TEMPLATE
Browse files Browse the repository at this point in the history
  • Loading branch information
sayyyho committed Oct 30, 2024
1 parent 325cef1 commit 6f7d1e3
Show file tree
Hide file tree
Showing 5 changed files with 58 additions and 7 deletions.
17 changes: 17 additions & 0 deletions .github/ISSUE_TEMPLATE/syncup-issue.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
name: syncup 이슈
about: syncup 이슈 템플릿입니다.
title: "[Issue] Title"
labels: ""
assignees: ""
---

## 🛠 Issue

<!-- 이슈에 대해 간략하게 설명해주세요 -->

## 📝 To-do

<!-- 진행할 작업에 대해 적어주세요 -->

- [ ] todo!
19 changes: 19 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# 🔥 Pull requests

## 👷 작업한 내용

<!-- 작업한 내용을 적어주세요. -->

## 🚨 참고 사항

<!-- 참고할 사항이 있다면 적어주세요. -->

## 📸 스크린샷

| 구현 내용 | 540px | 390px | 320px |
| :-------: | :-------------------------: | :-------------------------: | :-------------------------: |
| GIF | <img src = "" width ="250"> | <img src = "" width ="250"> | <img src = "" width ="250"> |

## 📟 관련 이슈

- Resolved: #이슈번호
18 changes: 18 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@types/node": "^22.8.4",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.3",
Expand Down
10 changes: 3 additions & 7 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,26 +15,22 @@
"@styles/*": ["src/styles/*"],
"@utils/*": ["src/utils/*"]
},

"target": "ES2020",
"useDefineForClassFields": true,
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"module": "ESNext",
"skipLibCheck": true,

/* Bundler mode */
"moduleResolution": "bundler",
"moduleResolution": "bundler", // 필요에 따라 "node"로 변경 가능
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",

/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true
"noFallthroughCasesInSwitch": true,
"types": ["node"] // Node.js 타입 지원 추가
},
"include": ["src"],
"references": [{ "path": "./tsconfig.node.json" }]
Expand Down

0 comments on commit 6f7d1e3

Please sign in to comment.