Skip to content

Commit ee57e7e

Browse files
committed
Add VS Code tasks
1 parent b3bdfa7 commit ee57e7e

File tree

3 files changed

+29
-1
lines changed

3 files changed

+29
-1
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ npm-debug.log*
88
yarn-debug.log*
99
yarn-error.log*
1010
pnpm-debug.log*
11-
.vscode
1211
.DS_Store
1312

1413
# ┌────────────────────────────────┐

.vscode/launch.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
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+
}

.vscode/tasks.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
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+
}

0 commit comments

Comments
 (0)