-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathCourseManager.code-workspace
More file actions
52 lines (52 loc) · 1.01 KB
/
CourseManager.code-workspace
File metadata and controls
52 lines (52 loc) · 1.01 KB
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
{
"folders": [
{
"name": "client",
"path": "packages/client"
},
{
"name": "server",
"path": "packages/server"
},
{
"name": "docs",
"path": "docs"
},
{
"name": "cms",
"path": "packages/cms"
}
],
"settings": {
"eslint.workingDirectories": [
"packages/client",
"packages/server",
"packages/cms"
],
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/*.js": {
"when": "$(basename).ts"
},
"**/*.map": true
},
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/*.map": true,
"**/*.js": {
"when": "$(basename).ts"
}
},
"emmet.triggerExpansionOnTab": true,
"breadcrumbs.enabled": true,
"workbench.editor.enablePreview": false,
"eslint.packageManager": "yarn",
"npm.packageManager": "yarn",
"files.eol": "\n"
},
}