-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathjzero-admin.code-workspace
More file actions
46 lines (45 loc) · 958 Bytes
/
jzero-admin.code-workspace
File metadata and controls
46 lines (45 loc) · 958 Bytes
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
{
"folders": [
{
"path": "server",
"name": "server"
},
{
"path": "web",
"name": "web"
},
{
"path": "deploy",
"name": "deploy"
},
{
"path": ".",
"name": "root"
}
],
"settings": {
"go.toolsEnvVars": {
"GOPROXY": "https://goproxy.cn,direct",
"GONOPROXY": "none;"
},
"i18n-ally.displayLanguage": "zh-cn",
"i18n-ally.enabledParsers": ["ts"],
"i18n-ally.enabledFrameworks": ["vue"],
"i18n-ally.editor.preferEditor": true,
"i18n-ally.keystyle": "nested",
"i18n-ally.localesPaths": ["web/src/locales/langs"],
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"type": "go",
"request": "launch",
"name": "server",
"cwd": "${workspaceFolder:server}",
"program": "${workspaceFolder:server}/",
"args": ["server", "--env", "etc/.env.yaml"]
},
],
}
}