Skip to content

Commit 2304c74

Browse files
committed
chore: add vscode config
1 parent eab031a commit 2304c74

File tree

3 files changed

+24
-2
lines changed

3 files changed

+24
-2
lines changed

.gitignore

-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ dist-ssr
1313
*.local
1414

1515
# Editor directories and files
16-
.vscode/*
17-
!.vscode/extensions.json
1816
.idea
1917
.DS_Store
2018
*.suo

.vscode/settings.json

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
{
2+
}

.vscode/tasks.json

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"type": "npm",
6+
"script": "build:watch",
7+
"path": "packages/router/",
8+
"group": {
9+
"kind": "build",
10+
"isDefault": true
11+
},
12+
"problemMatcher": [],
13+
"label": "npm: build:watch - packages/router",
14+
"detail": "node build.js --watch",
15+
"isBackground": true,
16+
"runOptions": {
17+
"instanceLimit": 1,
18+
"runOn": "folderOpen"
19+
}
20+
}
21+
]
22+
}

0 commit comments

Comments
 (0)