-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.code-workspace
45 lines (45 loc) · 1.43 KB
/
project.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
{
"folders": [
{ "name": "root", "path": "." },
{ "name": "@lib/core", "path": "./modules/lib/core" },
{ "name": "@lib/misc", "path": "./modules/lib/misc" },
{ "name": "@lib/module-a", "path": "./modules/lib/module-a" },
{ "name": "@lib/module-b", "path": "./modules/lib/module-b" },
{ "name": "@lib/selenium", "path": "./modules/lib/selenium" },
{ "name": "@lib/types", "path": "./modules/lib/types" },
{ "name": "@test/module-a", "path": "./modules/test/module-a" },
{ "name": "@test/module-b", "path": "./modules/test/module-b" }
],
"settings": {
"typescript.tsdk": "node_modules/typescript/lib",
"editor.codeActionsOnSave": { "source.fixAll": true },
"editor.defaultFormatter": "esbenp.prettier-vscode",
"jest.autoRun": "off",
"jest.disabledWorkspaceFolders": [
"root",
"@lib/core",
"@lib/misc",
"@lib/module-a",
"@lib/module-b",
"@lib/selenium",
"@lib/types"
],
"jest.jestCommandLine": "JEST_VSC_RUN=true yarn test",
"[typescript]": { "editor.defaultFormatter": "esbenp.prettier-vscode" },
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/*.code-search": true,
"dist": true,
"**/.yarn": true
}
},
"extensions": {
"recommendations": [
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"editorconfig.editorconfig",
"orta.vscode-jest"
]
}
}