Skip to content

Commit

Permalink
chore: tasks.json을 추가합니다. (#21)
Browse files Browse the repository at this point in the history
* chore: tsc watch script 추가

* chore: tasks.json 추가
  • Loading branch information
WooWan authored Aug 3, 2024
1 parent fb4e12d commit 73bbf4d
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "dev",
"problemMatcher": [],
"label": "Start Next",
"detail": "next dev"
},
{
"type": "npm",
"script": "ts:watch",
"group": "build",
"problemMatcher": [],
"label": "Watch TS",
"detail": "tsc -w"
}
]
}
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
"build": "next build",
"start": "next start",
"lint": "next lint",
"ts:watch": "tsc -w",
"ui": "bunx shadcn-ui@latest",
"ui:add": "bunx shadcn-ui@latest add",
"ui:lint": "bunx prettier src/components/ui/* --write",
Expand Down

0 comments on commit 73bbf4d

Please sign in to comment.