forked from taiyme/misskey
-
Notifications
You must be signed in to change notification settings - Fork 1
/
taiyme.code-workspace
53 lines (52 loc) · 1.06 KB
/
taiyme.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
48
49
50
51
52
53
{
"folders": [
{
"name": "root",
"path": ".",
},
{
"name": "backend",
"path": "./packages/backend",
},
{
"name": "frontend",
"path": "./packages/frontend",
},
{
"name": "frontend-embed",
"path": "./packages/frontend-embed",
},
],
"settings": {
"search.exclude": {
"**/node_modules": true,
},
"jest.jestCommandLine": "pnpm run jest",
"jest.runMode": "on-demand",
"editor.formatOnSave": false,
"editor.codeActionsOnSave": {
"source.fixAll": "explicit",
},
"typescript.tsdk": "./node_modules/typescript/lib",
"yaml.schemas": {
"https://json.schemastore.org/github-action.json": [
".github/actions/**/action.yaml",
".github/actions/**/action.yml",
],
"https://json.schemastore.org/github-issue-config.json": [
".github/ISSUE_TEMPLATE/config.yml",
],
},
},
"extensions": {
"recommendations": [
"editorconfig.editorconfig",
"dbaeumer.vscode-eslint",
"Vue.volar",
"Orta.vscode-jest",
"mrmlnc.vscode-json5",
"github.vscode-github-actions",
"redhat.vscode-yaml",
],
},
}