-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathexample.code-workspace
62 lines (62 loc) · 1.32 KB
/
example.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
{
"folders": [
{
"path": ".github"
},
{
"path": "example.api"
},
{
"path": "example.web"
}
],
"extensions": {
"recommendations": [
"mgmcdermott.vscode-language-babel",
"mikestead.dotenv",
"dbaeumer.vscode-eslint",
"eamodio.gitlens",
"mquandalle.graphql",
"orta.vscode-jest",
"esbenp.prettier-vscode",
"rebornix.project-snippets",
"vscode-icons-team.vscode-icons"
]
},
"settings": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"editor.tabSize": 2,
"eslint.packageManager": "yarn",
"prettier.packageManager": "yarn",
"search.exclude": {
"**/build": true,
"**/node_modules": true,
"**/yarn-error.log": true,
"**/yarn.lock": true
},
"jest.disabledWorkspaceFolders": [".github"],
"typescript.tsdk": "../.vscode/pnpify/typescript/lib",
"cSpell.ignorePaths": [
".pnp.*",
".vscode",
"**/.git/objects/**",
"**/build/**",
"**/node_modules/**",
"**/yarn.lock",
"example.code-workspace"
],
"cSpell.words": [
"browserslist",
"corejs",
"dependabot",
"downlevel",
"esnext",
"pnpify",
"sourcemap",
"tslib",
"typechecking",
"yarnpkg"
]
}
}