-
Notifications
You must be signed in to change notification settings - Fork 40
/
Fika-Server.code-workspace
47 lines (47 loc) · 1.25 KB
/
Fika-Server.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
{
"folders": [
{
"path": "."
}
],
"tasks": {
"version": "2.0.0",
"tasks": [
{
"label": "npm: install",
"type": "shell",
"command": "npm install"
},
{
"label": "npm: build",
"type": "shell",
"command": "npm run build",
"dependsOrder": "sequence",
"dependsOn": "npm: install",
"group": {
"kind": "build",
"isDefault": true
}
}
]
},
"settings": {
"window.title": "Fika Server",
"editor.formatOnSave": true,
"editor.defaultFormatter": "biomejs.biome",
"editor.codeActionsOnSave": ["source.organizeImports.biome"],
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/Thumbs.db": true,
"**/*.map": true,
"**/*.js": true
}
},
"extensions": {
"recommendations": ["EditorConfig.EditorConfig", "biomejs.biome", "refringe.spt-id-highlighter"]
}
}