-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathweb.code-workspace
43 lines (43 loc) · 941 Bytes
/
web.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
{
"folders": [
{
"name": "project-root",
"path": "./"
},
{
"name": "main-app",
"path": "apps/main-app",
"settings": {
"typescript.tsdk": "node_modules/typescript/lib",
}
},
{
"name": "@Vonage/client-sdk-react",
"path": "packages/client-sdk-react",
},
{
"name": "supabase backend",
"path": "apps/supabase-backend",
"settings": {
"deno.lint": true,
"eslint.enable":false
}
},
{
"name": "workflows",
"path": ".github/workflows",
"settings": {
"editor.tabSize": 2
}
}
],
"settings": {
"files.exclude": {
"apps/supabase-backend/": true,
"apps/main-app/": true,
"packages/client-sdk-react/": true,
},
"deno.importMap": "./apps/supabase-backend/supabase/functions/import_map.json",
"deno.config": "./apps/supabase-backend/deno.jsonc",
}
}