We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eab031a commit 2304c74Copy full SHA for 2304c74
.gitignore
@@ -13,8 +13,6 @@ dist-ssr
13
*.local
14
15
# Editor directories and files
16
-.vscode/*
17
-!.vscode/extensions.json
18
.idea
19
.DS_Store
20
*.suo
.vscode/settings.json
@@ -0,0 +1,2 @@
1
+{
2
+}
.vscode/tasks.json
@@ -0,0 +1,22 @@
+ "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": [],
+ "label": "npm: build:watch - packages/router",
+ "detail": "node build.js --watch",
+ "isBackground": true,
+ "runOptions": {
+ "instanceLimit": 1,
+ "runOn": "folderOpen"
+ }
21
+ ]
22
0 commit comments