-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmonorepo.code-workspace
58 lines (58 loc) · 1.59 KB
/
monorepo.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
{
"folders": [
{
"name": "@ying-web/api-service",
"path": "services/api-service",
},
{
"name": "@ying-web/events",
"path": "apps/events",
},
{
"name": "@ying-web/admin",
"path": "apps/admin",
},
{
"name": "@ying-web/tools",
"path": "packages/tools",
},
{
"name": "@ying-web/diary",
"path": "apps/diary",
},
{
"name": "@ying-web/test-config",
"path": "packages/test-config",
},
{
"name": "@ying-web/eslint-config",
"path": "packages/eslint-config",
},
],
"settings": {
"typescript.tsdk": "node_modules/typescript/lib",
"typescript.enablePromptUseWorkspaceTsdk": true,
"javascript.preferences.importModuleSpecifierEnding": "js",
"typescript.preferences.importModuleSpecifierEnding": "js",
"vitest.enable": true,
"vitest.commandLine": "pnpm test",
"testing.automaticallyOpenPeekView": "never",
"files.associations": {
"*.config.ts": "typescript",
"*.config.js": "javascript",
},
"search.exclude": {
"**/node_modules": true,
"**/dist": true,
"**/.turbo": true,
},
},
"extensions": {
"recommendations": [
"vitest.explorer",
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"ZixuanChen.vitest-explorer",
],
},
}