generated from profcomff/vuets-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
frontend.code-workspace
75 lines (75 loc) · 1.4 KB
/
frontend.code-workspace
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"folders": [
{
"path": "."
}
],
"extensions": {
"recommendations": [
"Vue.volar",
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"formulahendry.auto-close-tag",
"formulahendry.auto-rename-tag",
"steoates.autoimport",
"vunguyentuan.vscode-css-variables",
"mohd-akram.vscode-html-format",
],
},
"tasks": {
"version": "2.0.0",
"tasks": [
{
"label": "Configure",
"type": "shell",
"command": "npm install",
},
{
"label": "Run local",
"type": "shell",
"command": "npm run dev",
},
{
"label": "Build",
"type": "shell",
"command": "npm run build",
"group": {
"kind": "build",
"isDefault": true,
},
},
{
"label": "Test",
"type": "shell",
"command": "npm run test",
"group": {
"kind": "test",
"isDefault": true,
},
},
],
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"name": "Launch dev",
"request": "launch",
"runtimeArgs": ["dev"],
"runtimeExecutable": "pnpm",
"skipFiles": ["<node_internals>/**"],
"type": "node",
"serverReadyAction": {
"pattern": "Local: http://localhost:([0-9]+)/",
"uriFormat": "http://localhost:%s",
"action": "openExternally",
},
},
],
},
"settings": {
"typescript.tsdk": "node_modules/typescript/lib",
"css.validate": false,
"git.openRepositoryInParentFolders": "always",
},
}