-
-
Notifications
You must be signed in to change notification settings - Fork 257
/
dendron-main.code-workspace
109 lines (109 loc) · 2.27 KB
/
dendron-main.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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"folders": [
{
"path": ".",
"name": "root"
},
{
"path": "packages/dendron-viz"
},
{
"path": "packages/common-all"
},
{
"path": "packages/common-server"
},
{
"path": "packages/common-frontend"
},
{
"path": "packages/common-assets"
},
{
"path": "packages/plugin-core"
},
{
"path": "packages/engine-server"
},
{
"path": "packages/dendron-cli"
},
{
"path": "packages/pods-core"
},
{
"path": "packages/api-server"
},
{
"path": "packages/express-client"
},
{
"path": "packages/common-test-utils"
},
{
"path": "packages/engine-test-utils"
},
{
"path": "packages/nextjs-template"
},
{
"path": "packages/dendron-plugin-views"
},
{
"path": "packages/unified"
},
{
"path": "bootstrap"
},
{
"path": "fixtures"
},
{
"path": "test-workspace"
}
],
"settings": {
"files.exclude": {
".next/**": true,
"**/profile": true,
"**/*.tff": true,
"**/*.woff": true,
"**/*.woff2": true
},
"editor.codeActionsOnSave": {},
"search.exclude": {
"docs/*.md": true,
"**/*.d.ts": true,
"**/node_modules": true,
"**/bower_components": true,
"CHANGELOG.md": true,
".next/**": true
},
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/**": true,
"**/.hg/store/**": true,
"**/*.js": true
},
"editor.formatOnSave": true,
"workbench.editor.showTabs": true,
"editor.snippetSuggestions": "none",
"editor.defaultFormatter": "esbenp.prettier-vscode",
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.tabSize": 2,
"dendron.rootDir": ".",
"files.autoSave": "off",
"pasteImage.path": "${currentFileDir}/assets/images",
"pasteImage.prefix": "/",
"editor.suggest.snippetsPreventQuickSuggestions": false,
"editor.suggest.showSnippets": true,
"editor.tabCompletion": "on",
"typescript.tsdk": "root/node_modules/typescript/lib"
},
"extensions": {
"recommendations": ["esbenp.prettier-vscode"]
}
}