We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent edd6033 commit b15fb9bCopy full SHA for b15fb9b
.vscode/launch.json
@@ -5,12 +5,14 @@
5
"version": "0.2.0",
6
"configurations": [
7
{
8
+ "preLaunchTask": "install",
9
"command": "yarn run start:host",
10
"name": "Launch [Development]",
11
"request": "launch",
12
"type": "node-terminal"
13
},
14
15
16
"command": "yarn run build && yarn run serve",
17
"name": "Launch [Production]",
18
.vscode/tasks.json
@@ -0,0 +1,12 @@
1
+{
2
+ "version": "2.0.0",
3
+ "tasks": [
4
+ {
+ "type": "npm",
+ "script": "install",
+ "group": "build",
+ "label": "install",
+ "detail": "install dependencies from package"
+ }
+ ]
+}
0 commit comments