-
Notifications
You must be signed in to change notification settings - Fork 0
/
labeeb.code-workspace
37 lines (34 loc) · 1.01 KB
/
labeeb.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
{
"folders": [
{
"name": "labeeb (workspace)",
"path": "."
},
{
"name": "shared (core)",
"path": "packages/core"
},
{
"name": "frontend (client)",
"path": "packages/client"
},
{
"name": "backend (server)",
"path": "packages/server"
},
],
"settings": {
"typescript.tsdk": ".yarn/sdks/typescript/lib",
"typescript.enablePromptUseWorkspaceTsdk": true,
"prettier.prettierPath": ".yarn/sdks/prettier/index.js",
// This doesn't work because the path that you have to provide is relative to the
// workspace directory.
// "eslint.nodePath": ".yarn/sdks",
// This works because it's an absolute path
// "eslint.nodePath": "D:/my-projects/Labeeb/.yarn/sdks",
// This too works: Check out https://github.com/microsoft/vscode-eslint/issues/1225
// and https://github.com/microsoft/vscode-eslint/issues/1201 for more info.
"eslint.nodePath": "../../.yarn/sdks",
"eslint.packageManager": "yarn",
}
}