-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathproject.code-workspace
48 lines (47 loc) · 1.1 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
46
47
48
// Added to resolve the issue that a root node_modules caused all apps/xxx/node_modules to be ignored
// which led to vscode thinking imports were not there
{
"folders": [
{
"name": "Project Root",
"path": "."
},
{
"name": "dash-backend",
"path": "apps/dash-backend"
},
{
"name": "dash-frontend",
"path": "apps/dash-frontend"
},
{
"name": "docs",
"path": "apps/docs"
},
{
"name": "local-dev",
"path": "apps/local-dev"
},
{
"name": "postback-api",
"path": "apps/postback-api"
},
{
"name": "www",
"path": "apps/www"
}
],
"settings": {
"javascript.validate.enable": false,
"typescript.validate.enable": true,
"npm.packageManager": "npm",
"npm.exclude": ["**/Project Root"],
"search.exclude": {
"**/node_modules": true,
"**/.virtualenv": true,
"**/__pycache__": true,
"**/package-lock.json": true,
"**/static/generated*": true
}
}
}