forked from misskey-dev/misskey
-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtaiyme.code-workspace
76 lines (76 loc) · 1.51 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"folders": [
{
"name": "root",
"path": ".",
},
{
"name": "backend",
"path": "./packages/backend",
},
{
"name": "frontend-shared",
"path": "./packages/frontend-shared",
},
{
"name": "frontend",
"path": "./packages/frontend",
},
{
"name": "frontend-embed",
"path": "./packages/frontend-embed",
},
{
"name": "sw",
"path": "./packages/sw",
},
{
"name": "misskey-js",
"path": "./packages/misskey-js",
},
{
"name": "misskey-js/generator",
"path": "./packages/misskey-js/generator",
},
{
"name": "misskey-reversi",
"path": "./packages/misskey-reversi",
},
{
"name": "misskey-bubble-game",
"path": "./packages/misskey-bubble-game",
},
],
"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",
],
},
}