forked from magidoc-org/magidoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmagidoc.code-workspace
87 lines (87 loc) · 2.03 KB
/
magidoc.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
{
"settings": {
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/*.code-search": true,
"**/.svelte-kit": true,
"**/coverage": true,
"**/build": true,
"**/package": true
},
"eslint.probe": ["javascript", "typescript", "html", "markdown", "svelte"],
"eslint.validate": ["typescript", "svelte"],
"eslint.packageManager": "pnpm",
"cSpell.words": [
"magidoc"
],
"testing.automaticallyOpenPeekView": "never"
},
"folders": [
{
"name": "ROOT",
"path": "."
},
{
"name": "Docs",
"path": "./docs"
},
{
"name": "Examples",
"path": "./packages/examples"
},
{
"name": "Cli",
"path": "./packages/cli"
},
{
"name": "Plugins/Starter Common",
"path": "./packages/plugins/starter-common"
},
{
"name": "Plugins/Starter Variables",
"path": "./packages/plugins/starter-variables"
},
{
"name": "Plugins/Fuse Markdown",
"path": "./packages/plugins/fuse-markdown"
},
{
"name": "Plugins/Fuse GraphQL",
"path": "./packages/plugins/fuse-graphql"
},
{
"name": "Plugins/Rollup GraphQL Schema",
"path": "./packages/plugins/rollup-plugin-gql-schema"
},
{
"name": "Plugins/Reverse Schema Mapper",
"path": "./packages/plugins/reverse-schema-mapper"
},
{
"name": "Plugins/Query Generator",
"path": "./packages/plugins/query-generator"
},
{
"name": "Plugins/Svelte-PrismJS",
"path": "./packages/plugins/svelte-prismjs"
},
{
"name": "Plugins/Svelte-Marked",
"path": "./packages/plugins/svelte-marked"
},
{
"name": "Starters/Carbon-Multi-Page",
"path": "./packages/starters/carbon-multi-page"
}
],
"extensions": {
"recommendations": [
"fivethree.vscode-svelte-snippets",
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"svelte.svelte-vscode",
"ZixuanChen.vitest-explorer"
]
}
}