forked from Yooooomi/your_spotify
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmonorepo.code-workspace
More file actions
45 lines (45 loc) · 994 Bytes
/
monorepo.code-workspace
File metadata and controls
45 lines (45 loc) · 994 Bytes
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
{
"folders": [
{
"path": "apps/client",
"name": "client"
},
{
"path": "apps/server",
"name": "server"
},
{
"path": ".",
"name": "root"
},
],
"settings": {
"jest.disabledWorkspaceFolders": [
"root"
],
"typescript.tsdk": "server/node_modules/typescript/lib",
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
"eslint.enable": true,
"eslint.format.enable": true,
"eslint.workingDirectories": [
{"mode": "auto"}
],
"[typescript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features"
},
"[typescriptreact]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
}
},
"extensions": {
"recommendations": [
"dbaeumer.vscode-eslint"
]
}
}