-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsst-api-interface-contract.code-workspace
More file actions
75 lines (75 loc) · 1.79 KB
/
sst-api-interface-contract.code-workspace
File metadata and controls
75 lines (75 loc) · 1.79 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"settings": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"search.exclude": {
"**/.sst": true,
"pnpm-lock.yaml": true,
"**/node_modules": true
},
"search.followSymlinks": false,
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/**/*": true
},
"files.exclude": {
"**/.git": true
},
"[dotenv][ignore][properties][shellscript]": {
"editor.defaultFormatter": "foxundermoon.shell-format"
},
"[html][javascript][json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[markdown][mdx]": {
"editor.wordWrap": "on"
},
"typescript.tsdk": "🫚 Root/node_modules/typescript/lib",
"vitest.commandLine": "pnpm vitest",
"vitest.disabledWorkspaceFolders": ["🫚 Root"],
"cSpell.words": []
},
"extensions": {
"recommendations": [
"esbenp.prettier-vscode",
"dbaeumer.vscode-eslint",
"editorconfig.editorconfig",
"foxundermoon.shell-format",
"ZixuanChen.vitest-explorer",
"streetsidesoftware.code-spell-checker",
"streetsidesoftware.code-spell-checker-french",
"SebastianBille.iam-legend",
"unifiedjs.vscode-mdx"
]
},
"folders": [
{
"path": ".",
"name": "🫚 Root"
},
{
"path": "stacks",
"name": "🏭 Stacks"
},
{
"path": "packages/core",
"name": "🫀 Core"
},
{
"path": "packages/functions",
"name": "👨💻 Functions"
},
{
"path": "packages/interfaces",
"name": "📃 Interfaces"
},
{
"path": "packages/web",
"name": "🌐 Web"
}
]
}