-
Notifications
You must be signed in to change notification settings - Fork 2
/
timetabl.code-workspace
30 lines (30 loc) · 1.11 KB
/
timetabl.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
{
"folders": [
{
"path": "."
}
],
"settings": {
"task.allowAutomaticTasks": "on",
"typescript.tsdk": "node_modules/typescript/lib",
"deno.unstable": true,
"deno.enable": true,
"deno.codeLens.implementations": true,
"deno.codeLens.references": true,
"deno.codeLens.referencesAllFunctions": true,
"deno.codeLens.test": true,
"deno.enablePaths": ["apps/server/supabase/functions"],
"deno.inlayHints.enumMemberValues.enabled": false,
"deno.inlayHints.functionLikeReturnTypes.enabled": false,
"deno.inlayHints.parameterNames.enabled": "none",
"deno.inlayHints.parameterTypes.enabled": false,
"deno.inlayHints.propertyDeclarationTypes.enabled": false,
"deno.inlayHints.variableTypes.enabled": false,
"deno.suggest.completeFunctionCalls": true,
"deno.importMap": "apps/server/supabase/functions/import_map.json",
"deno.inlayHints.parameterNames.suppressWhenArgumentMatchesName": false,
"deno.inlayHints.variableTypes.suppressWhenTypeMatchesName": false,
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
}