forked from Riverscapes/riverscapes-gatsby-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
GatsbyDeveloper.code-workspace
65 lines (65 loc) · 1.48 KB
/
GatsbyDeveloper.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
{
"folders": [
{
"name": "🧰 Developer Site",
"path": "sites/devsite",
},
{
"name": "🌍 Clean Template Site",
"path": "sites/template"
},
{
"name": "🎨 Gatsby Theme",
"path": "theme"
},
{
"name": "🏠 Home",
"path": "."
}
],
"settings": {
"window.title": "RS GatsbyTheme${separator}${activeEditorShort}${separator}${rootName}",
"[mdx]": {
"editor.wordWrap": "on"
},
"css.lint.validProperties": ["composes"],
"workbench.colorCustomizations": {
"titleBar.activeBackground": "#001768",
"sideBar.background": "#242132",
"editor.background": "#1e1c2c"
},
"editor.tabSize": 2,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit"
},
"files.watcherExclude": {
"**/node_modules/**": true,
"**/.cache/**": true
},
"search.exclude": {
"**/node_modules/**": true,
"**/.cache/**": true,
"**/public/**": true,
"**/dist/**": true,
},
"files.exclude": {
"**/node_modules/**": true
},
"terminal.integrated.defaultProfile.linux": "zsh"
},
"launch": {
"configurations": [
{
"type": "chrome",
"name": "Debug Using Chrome",
"request": "launch",
"url": "http://localhost:8000",
"sourceMaps": true,
"outFiles": [
"${workspaceFolder}/sites/**/.cache/**",
"${workspaceFolder}/theme/**",
],
}
]
},
}