-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathAcadGame.code-workspace
More file actions
72 lines (72 loc) · 1.66 KB
/
AcadGame.code-workspace
File metadata and controls
72 lines (72 loc) · 1.66 KB
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
{
"folders": [
{
"name": "AcadGame",
"path": "."
}
],
"settings": {
"editor.rulers": [80],
"editor.tabSize": 2,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
"editor.formatOnSave": true,
"eslint.format.enable": true,
"eslint.packageManager": "yarn",
"eslint.run": "onSave",
"eslint.validate": ["typescript", "typescriptreact"],
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true
}
},
"extensions": {
"recommendations": [
"dbaeumer.vscode-eslint",
"streetsidesoftware.code-spell-checker",
"kisstkondoros.vscode-codemetrics",
"esbenp.prettier-vscode"
]
},
"launch": {
"configurations": [
{
"command": "(cd shared/lib && yarn watch)",
"name": "LibraryWatch",
"request": "launch",
"type": "node-terminal"
},
{
"command": "node ./tools/parcel-watch.js",
"name": "ChokidarWatch",
"request": "launch",
"type": "node-terminal"
},
{
"command": "(cd ui/web && yarn start)",
"name": "WebUiServe",
"request": "launch",
"type": "node-terminal"
},
{
"command": "(cd server && yarn dev)",
"name": "NodeServer",
"request": "launch",
"type": "node-terminal"
}
],
"compounds": [
{
"name": "DevEnvironment",
"configurations": [
"LibraryWatch",
"ChokidarWatch",
"WebUiServe",
"NodeServer"
]
}
]
}
}