-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathhumanet.code-workspace
More file actions
93 lines (93 loc) · 2.12 KB
/
humanet.code-workspace
File metadata and controls
93 lines (93 loc) · 2.12 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"folders": [
{
"name": "🏠 Root",
"path": "."
},
{
"name": "🎨 Frontend",
"path": "./frontend"
},
{
"name": "⚙️ Backend",
"path": "./backend"
},
{
"name": "📦 Shared",
"path": "./shared"
}
],
"settings": {
"typescript.preferences.includePackageJsonAutoImports": "on",
"typescript.suggest.autoImports": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit",
"source.organizeImports": "explicit"
},
"editor.formatOnSave": true,
"tailwindCSS.includeLanguages": {
"typescript": "javascript",
"typescriptreact": "javascript"
},
"files.associations": {
"*.css": "tailwindcss"
},
"emmet.includeLanguages": {
"javascript": "javascriptreact",
"typescript": "typescriptreact"
}
},
"extensions": {
"recommendations": [
"bradlc.vscode-tailwindcss",
"ms-vscode.vscode-typescript-next",
"esbenp.prettier-vscode",
"dbaeumer.vscode-eslint",
"rangav.vscode-thunder-client",
"mongodb.mongodb-vscode",
"ms-vscode.vscode-json",
"usernamehw.errorlens",
"streetsidesoftware.code-spell-checker",
"ms-vscode.vscode-node-azure-pack"
]
},
"tasks": {
"version": "2.0.0",
"tasks": [
{
"label": "🚀 Start Development",
"type": "shell",
"command": "pnpm dev",
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "new"
},
"problemMatcher": []
},
{
"label": "📚 Start Storybook",
"type": "shell",
"command": "pnpm --filter frontend storybook",
"group": "build",
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "new"
}
},
{
"label": "🌱 Seed Database",
"type": "shell",
"command": "pnpm seed",
"group": "build"
}
]
}
}