-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjunction.code-workspace
95 lines (95 loc) · 2.19 KB
/
junction.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"folders": [
{
"path": "back-end",
"name": "Back end"
},
{
"path": "front-end",
"name": "Front end"
},
{
"path": "admin-end",
"name": "Admin end"
}
],
"settings": {
"workbench.colorTheme": "Default Dark Modern",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnPaste": true,
"files.autoSave": "onFocusChange",
"files.trimTrailingWhitespace": true,
"restoreTerminals.runOnStartup": true,
"restoreTerminals.keepExistingTerminalsOpen": false,
"terminal.integrated.profiles.windows": {
"Server": {
"source": "PowerShell",
"icon": "server",
"color": "terminal.ansiGreen"
},
"Browser": {
"source": "PowerShell",
"icon": "browser",
"color": "terminal.ansiBlue"
},
"Admin": {
"source": "PowerShell",
"icon": "browser",
"color": "terminal.ansiMagenta"
}
},
"explorer.fileNesting.patterns": {
"*.ts": "${capture}.*.ts",
"*.router.ts": "${capture}.handler.ts,${capture}.router.ts"
},
"restoreTerminals.terminals": [
{
"splitTerminals": [
{
"profile": "Server",
"name": "Back end",
"commands": ["cd ../back-end", "npm run dev"],
"waitOnExit": true
},
{
"profile": "Browser",
"name": "Front end",
"commands": ["cd ../front-end", "npm run dev"],
"waitOnExit": true
}
/* ,{
"profile": "Admin",
"name": "Admin end",
"commands": ["cd ./admin-end", "npm run dev"],
"waitOnExit": true
} */
]
}
],
"cSpell.words": ["formik", "heroicons", "mailgun"]
},
"extensions": {
"recommendations": [
"dbaeumer.vscode-eslint",
"eamodio.gitlens",
"esbenp.prettier-vscode",
"wayou.vscode-todo-highlight",
"fabiospampinato.vscode-todo-plus",
"github.copilot",
"vscode-icons-team.vscode-icons",
"dsznajder.es7-react-js-snippets",
"riazxrazor.html-to-jsx",
"oderwat.indent-rainbow",
"xabikos.javascriptsnippets",
"1000ch.svgo",
"bradlc.vscode-tailwindcss",
"iceworks-team.iceworks-time-master",
"planbcoding.vscode-react-refactor",
"ethansk.restore-terminals"
]
}
}