File tree Expand file tree Collapse file tree 3 files changed +29
-1
lines changed
Expand file tree Collapse file tree 3 files changed +29
-1
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,6 @@ npm-debug.log*
88yarn-debug.log *
99yarn-error.log *
1010pnpm-debug.log *
11- .vscode
1211.DS_Store
1312
1413# ┌────────────────────────────────┐
Original file line number Diff line number Diff line change 1+ {
2+ "version" : " 0.2.0" ,
3+ "configurations" : [
4+ {
5+ "name" : " Start dev server" ,
6+ "type" : " node-terminal" ,
7+ "request" : " launch" ,
8+ "command" : " pnpm run dev" ,
9+ "cwd" : " ${workspaceFolder}"
10+ }
11+ ]
12+ }
Original file line number Diff line number Diff line change 1+ {
2+ "version" : " 2.0.0" ,
3+ "tasks" : [
4+ {
5+ "label" : " pnpm: dev" ,
6+ "type" : " shell" ,
7+ "command" : " pnpm run dev" ,
8+ "presentation" : {
9+ "echo" : true ,
10+ "reveal" : " always" ,
11+ "focus" : true ,
12+ "panel" : " shared"
13+ },
14+ "problemMatcher" : []
15+ }
16+ ]
17+ }
You can’t perform that action at this time.
0 commit comments