-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathworkspace.code-workspace
42 lines (42 loc) · 1.12 KB
/
workspace.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
{
"folders": [
{
"path": "."
}
],
"settings": {
"workbench.colorCustomizations": {
"activityBar.activeBorder": "#bf407b",
"sash.hoverBorder": "#93e6fc",
"statusBar.background": "#61dafb",
"statusBar.foreground": "#15202b",
"statusBarItem.hoverBackground": "#2fcefa",
"statusBarItem.remoteBackground": "#61dafb",
"statusBarItem.remoteForeground": "#15202b"
},
"peacock.color": "#61dafb",
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/Thumbs.db": true,
"**/node_modules": true,
"node_modules": true,
"**/yarn.lock": true,
"**/package-lock.json": true,
"package-lock.json": true,
".next": true
},
"tailwindCSS.emmetCompletions": true,
"tailwindCSS.includeLanguages": {
"html": "HTML",
"javascript": "javascript",
"javascriptreact": "javascriptreact",
"typescript": "typescript",
"typescriptreact": "typescriptreact"
},
"css.validate": false
}
}